Example #1
0
 public static object ToSymbol(RubyContext/*!*/ context, int self)
 {
     return context.FindSymbol(self);
 }
Example #2
0
        public static object Id2Name(RubyContext /*!*/ context, int self)
        {
            var symbol = context.FindSymbol(self);

            return(symbol != null?symbol.String.Clone() : null);
        }
Example #3
0
 public static object Id2Name(RubyContext/*!*/ context, int self)
 {
     var symbol = context.FindSymbol(self);
     return symbol != null ? symbol.String.Clone() : null;
 }
Example #4
0
 public static object ToSymbol(RubyContext /*!*/ context, int self)
 {
     return(context.FindSymbol(self));
 }