IronRuby.Builtins.RubyMethod.GetDebugView C# (CSharp) Method

GetDebugView() private method

private GetDebugView ( ) : string
return string
        private string/*!*/ GetDebugView() {
            var result = new StringBuilder();
            result.Append(_info.Visibility.ToString().ToLowerInvariant());
            result.Append(' ');

            result.Append(GetTargetClass().Name);
            result.Append('#');
            result.Append(_name);

            // TODO: parameter names?
            result.Append("()");
            return result.ToString();            
        }