System.RuntimeTypeHandle.MakeByRef C# (CSharp) Method

MakeByRef() private method

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

Usage Example

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