| StackFrame {Microsoft.VisualBasic.ApplicationServices.Debugging.Diagnostics} | .NET clr documentation | 
Contains the necessary function calls information, source file location information for traceback the runtime error
            
# namespace Microsoft.VisualBasic.ApplicationServices.Debugging.Diagnostics
export class StackFrame {
   # The file path of the source file
   File: string;
   # The line number in current source StackFrame.File.
   Line: string;
   # Method call
   Method: Method;
}
        
        Method: Method