■ Exception 클래스의 StackTrace 속성을 사용해 예외 발생 소스 코드의 줄 번호를 구하는 방법을 보여준다.
▶ Exception 클래스 : StackTrace 속성을 사용해 예외 발생 소스 코드 줄 번호 구하기 예제 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 |
try { throw new Exception(); } catch(Exception exception) { int line = GetLineNumber(exception); Console.WriteLine($"ERROR LINE : {line}"); } |
▶ Exception 클래스 : StackTrace 속성을 사용해 예외 발생 소스 코드 줄 번호 구하기 (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 줄 번호 구하기 - GetLineNumber(exception) /// <summary> /// 줄 번호 구하기 /// </summary> /// <param name="exception">예외</param> /// <returns>줄 번호</returns> public int GetLineNumber(Exception exception) { int lineNumber = 0; const string lineSearch = ":line "; int index = exception.StackTrace.LastIndexOf(lineSearch); if(index != -1) { string lineNumberText = exception.StackTrace.Substring(index + lineSearch.Length); if(int.TryParse(lineNumberText, out lineNumber)) { } } return lineNumber; } #endregion |