FormatVariable() public method

public FormatVariable ( StackFrame frame, TargetVariable variable ) : void
frame StackFrame
variable Mono.Debugger.Languages.TargetVariable
return void
コード例 #1
0
        public override string PrintVariable(TargetVariable variable, StackFrame frame)
        {
            ObjectFormatter formatter = new ObjectFormatter(DisplayFormat.Default);

            formatter.FormatVariable(frame, variable);
            return(formatter.ToString());
        }
コード例 #2
0
ファイル: Style.cs プロジェクト: baulig/debugger
 public override string PrintVariable(TargetVariable variable, StackFrame frame)
 {
     ObjectFormatter formatter = new ObjectFormatter (DisplayFormat.Default);
     formatter.FormatVariable (frame, variable);
     return formatter.ToString ();
 }