Mono.Debugger.Frontend.ObjectFormatter.ToString C# (CSharp) 메소드

ToString() 공개 메소드

public ToString ( ) : string
리턴 string
        public new string ToString()
        {
            return sb.ToString ();
        }

Usage Example

예제 #1
0
        public override string PrintVariable(TargetVariable variable, StackFrame frame)
        {
            ObjectFormatter formatter = new ObjectFormatter(DisplayFormat.Default);

            formatter.FormatVariable(frame, variable);
            return(formatter.ToString());
        }
All Usage Examples Of Mono.Debugger.Frontend.ObjectFormatter::ToString