System.RuntimeTypeHandle.MakeByRef C# (CSharp) Метод

MakeByRef() приватный Метод

private MakeByRef ( ) : RuntimeTypeHandle
Результат RuntimeTypeHandle
        internal RuntimeTypeHandle MakeByRef()
        {
            return new RuntimeTypeHandle(_MakeByRef());
        }
       

Usage Example

Пример #1
0
        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