The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
StackFrame::ToString Method ()
.NET Framework (current version)
Builds a readable representation of the stack trace.
Assembly: mscorlib (in mscorlib.dll)
The following example demonstrates the use of the ToString method. This code example is part of a larger example provided for the StackFrame class.
void InternalMethod() { try { ClassLevel2^ nestedClass = gcnew ClassLevel2; nestedClass->Level2Method(); } catch ( Exception^ e ) { Console::WriteLine( " InternalMethod exception handler" ); // Build a stack trace from one frame, skipping the // current frame and using the next frame. By // default, file and line information are not displayed. StackTrace^ st = gcnew StackTrace( gcnew StackFrame( 1 ) ); Console::WriteLine( " Stack trace for next level frame: {0}", st->ToString() ); Console::WriteLine( " Stack frame for next level: " ); Console::WriteLine( " {0}", st->GetFrame( 0 )->ToString() ); Console::WriteLine( " Line Number: {0}", st->GetFrame( 0 )->GetFileLineNumber().ToString() ); Console::WriteLine(); Console::WriteLine( " ... throwing exception to next level ..." ); Console::WriteLine( "-------------------------------------------------\n" ); throw e; } }
FileIOPermission
for access to the path information. Associated enumeration: FileIOPermissionAccess
Universal Windows Platform
Available since 10
.NET Framework
Available since 1.1
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Available since 10
.NET Framework
Available since 1.1
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Show: