IronRuby.Builtins.Range.Inspect C# (CSharp) Method

Inspect() public method

public Inspect ( RubyContext context ) : MutableString
context RubyContext
return MutableString
        public MutableString/*!*/ Inspect(RubyContext/*!*/ context) {
            var result = MutableString.CreateMutable(RubyEncoding.Binary);
            result.Append(context.Inspect(_begin));
            result.Append(Separator);
            result.Append(context.Inspect(_end));
            return result;
        }

Usage Example

Example #1
0
 public static MutableString/*!*/ Inspect(RubyContext/*!*/ context, Range/*!*/ self) {
     return self.Inspect(context);
 }
All Usage Examples Of IronRuby.Builtins.Range::Inspect