Mono.Debugger.Frontend.ObjectFormatter.ToString C# (CSharp) Method

ToString() public method

public ToString ( ) : string
return 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