הערה
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות להיכנס או לשנות מדריכי כתובות.
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות לשנות מדריכי כתובות.
'type_parameter' : the value constraint and the ref constraint are mutually exclusive
Remarks
You cannot constrain a generic type to both value class and ref class.
See Constraints on Generic Type Parameters (C++/CLI) for more information.
Example
The following example generates C3384.
// C3384.cpp
// compile with: /c /clr
generic <typename T>
where T : ref class
where T : value class // C3384
ref class List {};