■ Exception 클래스의 GetBaseException 메소드를 사용해 최초 내부 예외를 구하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
#region 최초 내부 예외 구하기 - GetFirstInnerException(exception) /// <summary> /// 최초 내부 예외 구하기 /// </summary> /// <param name="exception">예외</param> /// <returns>최초 내부 예외</returns> public Exception GetFirstInnerException(Exception exception) { return exception.GetBaseException(); } #endregion |