예제 #1
0
파일: FixnumOps.cs 프로젝트: TerabyteX/main
 public static object ToSymbol(RubyContext/*!*/ context, int self)
 {
     return context.FindSymbol(self);
 }
예제 #2
0
        public static object Id2Name(RubyContext /*!*/ context, int self)
        {
            var symbol = context.FindSymbol(self);

            return(symbol != null?symbol.String.Clone() : null);
        }
예제 #3
0
파일: FixnumOps.cs 프로젝트: TerabyteX/main
 public static object Id2Name(RubyContext/*!*/ context, int self)
 {
     var symbol = context.FindSymbol(self);
     return symbol != null ? symbol.String.Clone() : null;
 }
예제 #4
0
 public static object ToSymbol(RubyContext /*!*/ context, int self)
 {
     return(context.FindSymbol(self));
 }