MakePointer() private method

private MakePointer ( ) : RuntimeTypeHandle
return RuntimeTypeHandle
コード例 #1
0
ファイル: runtimehandles.cs プロジェクト: wwkkww1983/ZJCredit
        internal RuntimeType MakePointer()
        {
            RuntimeType o = (RuntimeType)null;

            RuntimeTypeHandle.MakePointer(this.GetNativeHandle(), JitHelpers.GetObjectHandleOnStack <RuntimeType>(ref o));
            return(o);
        }
コード例 #2
0
        internal RuntimeType MakePointer()
        {
            RuntimeType result = null;

            RuntimeTypeHandle.MakePointer(this.GetNativeHandle(), JitHelpers.GetObjectHandleOnStack <RuntimeType>(ref result));
            return(result);
        }