에 있습니다.NET에서 코드 행 수를 가져오는 방법

1711 단어
글의 목적
소개하다NET에서 코드 행 수를 가져오는 방법
코드
 
  
[STAThread]
static void Main(string[] args)
{
ReportError("Yay!");
}

static private void ReportError(string Message)
{
StackFrame CallStack = new StackFrame(1, true);
Console.Write("Error: " + Message + ", File: " + CallStack.GetFileName() + ", Line: " + CallStack.GetFileLineNumber());
}

StackFrame(Int32, Boolean)은 현재 스택 프레임 위에 있는 프레임에 해당하는 StackFrame 클래스의 새 인스턴스를 초기화하여 소스 정보를 캡처하도록 선택할 수 있습니다.
GetFileName: 실행 코드가 포함된 파일 이름을 가져옵니다.이 정보는 보통 실행 가능한 파일의 디버깅 기호에서 추출됩니다.
GetMethod: 프레임을 실행하는 방법을 가져옵니다.
GetFileLineNumber: 파일에 실행 코드가 포함된 행 번호를 가져옵니다.이 정보는 보통 실행 가능한 파일의 디버깅 기호에서 추출됩니다.
예외적인 Exception StackTrace 클래스 활용
 
  
try
{
throw new Exception();
}
catch (Exception ex)
{
// Get stack trace for the exception with source file information
var st = new StackTrace(ex, true);
// Get the top stack frame
var frame = st.GetFrame(0);
// Get the line number from the stack frame
var line = frame.GetFileLineNumber();
}

.NET4.5 새로운 방법
 
  
static void SomeMethodSomewhere()
{
ShowMessage("Boo");
}
...
static void ShowMessage(string message,
[CallerLineNumber] int lineNumber = 0,
[CallerMemberName] string caller = null)
{
MessageBox.Show(message + " at line " + lineNumber + " (" + caller + ")");
}

좋은 웹페이지 즐겨찾기