Mono.Debugger.Backend.SingleSteppingEngine.PrintType C# (CSharp) Method

PrintType() public method

public PrintType ( Style style, TargetType type ) : string
style Style
type Mono.Debugger.Languages.TargetType
return string
        public override string PrintType(Style style, TargetType type)
        {
            return (string) SendCommand (delegate {
                return style.FormatType (thread, type);
            });
        }
SingleSteppingEngine