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

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

private GetConstraints ( ) : System.RuntimeTypeHandle[]
Результат System.RuntimeTypeHandle[]
        internal extern RuntimeTypeHandle[] GetConstraints();
        

Usage 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