StackFrame.GetFileLineNumber Method
.NET Framework 4.5
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.
Namespace: System.Diagnostics
Assembly: mscorlib (in mscorlib.dll)
Return Value
Type: System.Int32The file line number, or 0 (zero) if the file line number cannot be determined.
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. Dim sf As StackFrame = st.GetFrame(i) Console.WriteLine(" File: {0}", sf.GetFileName()) Console.WriteLine(" Line Number: {0}", _ sf.GetFileLineNumber()) ' 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()) End If If sf.GetNativeOffset <> StackFrame.OFFSET_UNKNOWN Console.WriteLine(" Native Offset: {0}", _ sf.GetNativeOffset()) End If
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.