System.RuntimeTypeHandle.MakePointer C# (CSharp) Method

MakePointer() private method

private MakePointer ( ) : RuntimeTypeHandle
return RuntimeTypeHandle
        internal RuntimeTypeHandle MakePointer()
        {
            return new RuntimeTypeHandle(_MakePointer());
        }

Usage Example

Example #1
0
        internal RuntimeType MakePointer()
        {
            RuntimeType o = (RuntimeType)null;

            RuntimeTypeHandle.MakePointer(this.GetNativeHandle(), JitHelpers.GetObjectHandleOnStack <RuntimeType>(ref o));
            return(o);
        }
All Usage Examples Of System.RuntimeTypeHandle::MakePointer