StackFrame.GetFileLineNumber Method
.NET Framework 4
Gets the line number in the file that contains the code that is executing. This information is typically extracted from the debugging symbols for the executable.
Assembly: mscorlib (in mscorlib.dll)
The following example demonstrates the use of the GetFileLineNumber method. This code example is part of a larger example provided for the StackFrame class.
// Display the stack frame properties. StackFrame sf = st.GetFrame(i); Console.WriteLine(" File: {0}", sf.GetFileName()); Console.WriteLine(" Line Number: {0}", sf.GetFileLineNumber()); // Note that the column number defaults to zero // when not initialized. Console.WriteLine(" Column Number: {0}", sf.GetFileColumnNumber()); if (sf.GetILOffset() != StackFrame.OFFSET_UNKNOWN) { Console.WriteLine(" Intermediate Language Offset: {0}", sf.GetILOffset()); } if (sf.GetNativeOffset() != StackFrame.OFFSET_UNKNOWN) { Console.WriteLine(" Native Offset: {0}", sf.GetNativeOffset()); }
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.