नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
'specialization' : explicit or partial specialization of a generic class is not allowed
Remarks
Generic classes cannot be used for explicit or partial specializations.
Example
The following example generates C3235.
// C3235.cpp
// compile with: /clr
generic<class T>
public ref class C {};
generic<>
public ref class C<int> {}; // C3235 Remove this specialization to resolve this error.