Mono.Debugger.SymbolFile.UnwindStack C# (CSharp) 메소드

UnwindStack() 추상적인 개인적인 메소드

abstract private UnwindStack ( StackFrame last_frame, TargetMemoryAccess memory ) : StackFrame
last_frame StackFrame
memory TargetMemoryAccess
리턴 StackFrame
        internal abstract StackFrame UnwindStack(StackFrame last_frame,
							  TargetMemoryAccess memory);

Usage Example

예제 #1
0
 internal StackFrame UnwindStack(StackFrame last_frame,
                                 TargetMemoryAccess memory)
 {
     return(SymbolFile.UnwindStack(last_frame, memory));
 }