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