TryGetClrConstructor() public method

public TryGetClrConstructor ( IronRuby.Runtime.Calls.RubyMemberInfo &method ) : bool
method IronRuby.Runtime.Calls.RubyMemberInfo
return bool
Exemplo n.º 1
0
        public static RubyMethod GetClrConstructor(RubyClass/*!*/ self)
        {
            RubyMemberInfo info;

            if (self.TypeTracker == null) {
                throw RubyExceptions.CreateNotClrTypeError(self);
            }

            if (!self.TryGetClrConstructor(out info)) {
                throw RubyOps.MakeConstructorUndefinedError(self);
            }

            return new RubyMethod(self, info, ".ctor");
        }
Exemplo n.º 2
0
        public static RubyMethod /*!*/ GetClrConstructor(RubyClass /*!*/ self)
        {
            RubyMemberInfo info;

            if (self.TypeTracker == null)
            {
                throw RubyExceptions.CreateNotClrTypeError(self);
            }

            if (!self.TryGetClrConstructor(out info))
            {
                throw RubyOps.MakeConstructorUndefinedError(self);
            }

            return(new RubyMethod(self, info, ".ctor"));
        }