IronRuby.Builtins.RubyMethod.GetDebugView C# (CSharp) Méthode

GetDebugView() private méthode

private GetDebugView ( ) : string
Résultat 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();            
        }