System.RuntimeTypeHandle.MakeSZArray C# (CSharp) Method

MakeSZArray() private method

private MakeSZArray ( ) : RuntimeTypeHandle
return RuntimeTypeHandle
        internal RuntimeTypeHandle MakeSZArray()
        {
            return new RuntimeTypeHandle(_MakeSZArray());
        }
        

Usage Example

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

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