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

MakeByRef() private méthode

private MakeByRef ( ) : RuntimeTypeHandle
Résultat RuntimeTypeHandle
        internal RuntimeTypeHandle MakeByRef()
        {
            return new RuntimeTypeHandle(_MakeByRef());
        }
       

Usage Example

        internal RuntimeType MakeByRef()
        {
            RuntimeType o = (RuntimeType)null;

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