Mono.Debugger.Backend.Architecture.PrintRegisters C# (CSharp) Method

PrintRegisters() public abstract method

public abstract PrintRegisters ( StackFrame frame ) : string
frame StackFrame
return string
        public abstract string PrintRegisters(StackFrame frame);

Usage Example

示例#1
0
 public string PrintRegisters(StackFrame frame)
 {
     return(Architecture.PrintRegisters(frame));
 }