コード例 #1
0
ファイル: 1module.cs プロジェクト: wwkkww1983/ZJCredit
        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);
        }