GetConstraints() private method

private GetConstraints ( ) : System.RuntimeTypeHandle[]
return System.RuntimeTypeHandle[]
コード例 #1
0
ファイル: runtimehandles.cs プロジェクト: wwkkww1983/ZJCredit
 internal Type[] GetConstraints()
 {
     Type[] o = (Type[])null;
     RuntimeTypeHandle.GetConstraints(this.GetNativeHandle(), JitHelpers.GetObjectHandleOnStack <Type[]>(ref o));
     return(o);
 }
コード例 #2
0
 internal Type[] GetConstraints()
 {
     Type[] result = null;
     RuntimeTypeHandle.GetConstraints(this.GetNativeHandle(), JitHelpers.GetObjectHandleOnStack <Type[]>(ref result));
     return(result);
 }