System.RuntimeTypeHandle.GetConstraints C# (CSharp) Method

GetConstraints() private method

private GetConstraints ( ) : System.RuntimeTypeHandle[]
return System.RuntimeTypeHandle[]
        internal extern RuntimeTypeHandle[] GetConstraints();
        

Usage Example

Example #1
0
 internal Type[] GetConstraints()
 {
     Type[] o = (Type[])null;
     RuntimeTypeHandle.GetConstraints(this.GetNativeHandle(), JitHelpers.GetObjectHandleOnStack <Type[]>(ref o));
     return(o);
 }
All Usage Examples Of System.RuntimeTypeHandle::GetConstraints