Format() 공개 메소드

public Format ( Thread target, TargetObject obj ) : void
target Thread
obj Mono.Debugger.Languages.TargetObject
리턴 void
예제 #1
0
        public override string FormatObject(Thread target, object obj,
                                            DisplayFormat format)
        {
            ObjectFormatter formatter = new ObjectFormatter(format);

            formatter.Format(target, obj);
            return(formatter.ToString());
        }
예제 #2
0
파일: Style.cs 프로젝트: baulig/debugger
        public override string FormatObject(Thread target, object obj,
						     DisplayFormat format)
        {
            ObjectFormatter formatter = new ObjectFormatter (format);
            formatter.Format (target, obj);
            return formatter.ToString ();
        }