FormatVariable() 공개 메소드

public FormatVariable ( StackFrame frame, TargetVariable variable ) : void
frame StackFrame
variable Mono.Debugger.Languages.TargetVariable
리턴 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 ();
 }