नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
constraint must be a generic parameter, not 'type'
Remarks
A constraint was ill formed.
Example
The following example generates C3216:
// C3216.cpp
// compile with: /clr
interface struct A {};
generic <class T>
where F : A // C3216
// Try the following line instead:
// where T : A // C3216
ref class C {};
The following example demonstrates a possible resolution:
// C3216b.cpp
// compile with: /clr /c
interface struct A {};
generic <class T>
where T : A
ref class C {};