StackFrame Constructor (String, Int32)
.NET Framework 4
Initializes a new instance of the StackFrame class that contains only the given file name and line number.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- fileName
- Type: System.String
The file name.
- lineNumber
- Type: System.Int32
The line number in the specified file.
The following example demonstrates the use of the StackFrame(String, Int32) constructor. This code example is part of a larger example provided for the StackFrame class.
public void Level3Method() { try { ClassLevel4 nestedClass = new ClassLevel4(); nestedClass.Level4Method(); } catch (Exception e) { Console.WriteLine(" Level3Method exception handler"); // Build a stack trace from a dummy stack frame. // Explicitly specify the source file name and // line number. StackTrace st = new StackTrace(new StackFrame("source.cs", 60)); Console.WriteLine(" Stack trace with dummy stack frame: {0}", st.ToString()); for(int i =0; i< st.FrameCount; i++ ) { // 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()); } } Console.WriteLine(); Console.WriteLine(" ... throwing exception to next level ..."); Console.WriteLine("-------------------------------------------------\n"); throw e; } }
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.