הערה
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות להיכנס או לשנות מדריכי כתובות.
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות לשנות מדריכי כתובות.
'type' : generic type parameter already constrained
Remarks
It is not valid to constrain a generic parameter in more than one where clause.
Example
The following example generates C3233:
// C3233.cpp
// compile with: /clr /LD
interface struct C {};
interface struct D {};
generic <class T>
where T : C
where T : D
ref class E {}; // C3233