摘要:
public static class ExceptionExtensions { public static IEnumerable GetAllExceptions(this Exception ex) { Exception currentEx = ex; yield return currentEx; while (currentEx.InnerException != null) { currentEx = currentEx.InnerException; ... 阅读全文
posted @ 2013-10-28 10:10
chunchill
阅读(219)
评论(0)
推荐(0)


浙公网安备 33010602011771号