Exemplo n.º 1
0
        public override Type GetType(string className, bool throwOnError, bool ignoreCase)
        {
            if (className == null)
            {
                throw new ArgumentNullException("className");
            }
            RuntimeType o = (RuntimeType)null;

            RuntimeModule.GetType(this.GetNativeHandle(), className, throwOnError, ignoreCase, JitHelpers.GetObjectHandleOnStack <RuntimeType>(ref o));
            return((Type)o);
        }