■ Exception 클래스에서 모든 예외 열거 가능형을 구하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
#region 모든 예외 열거 가능형 구하기 - GetAllExceptionEnumerable(exception) /// <summary> /// 모든 예외 열거 가능형 구하기 /// </summary> /// <param name="exception">예외</param> /// <returns>모든 예외 열거 가능형</returns> public IEnumerable<Exception> GetAllExceptionEnumerable(Exception exception) { yield return exception; if(exception is AggregateException aggregateException) { foreach(Exception innerEx in aggregateException.InnerExceptions.SelectMany(e => GetAllExceptionEnumerable(e))) { yield return innerEx; } } else if(exception.InnerException != null) { foreach(Exception innerException in GetAllExceptionEnumerable(exception.InnerException)) { yield return innerException; } } } #endregion |