System.RuntimeTypeHandle.MakePointer C# (CSharp) Méthode

MakePointer() private méthode

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

Usage Example

        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