IronRuby.Builtins.ModuleOps.GetConstantValue C# (CSharp) Method

GetConstantValue() private method

private GetConstantValue ( RubyScope scope, RubyModule self, [ constantName ) : object
scope RubyScope
self RubyModule
constantName [
return object
        public static object GetConstantValue(RubyScope/*!*/ scope, RubyModule/*!*/ self, [DefaultProtocol, NotNull]string/*!*/ constantName) {
            return RubyUtils.GetConstant(scope.GlobalScope, self, constantName, true);
        }