नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
'constructor' : override specifier 'keyword' not allowed on a constructor
Remarks
An override specifier was used on a constructor, and that is not allowed. For more information, see Override Specifiers.
Example
The following example generates C3666.
// C3666.cpp
// compile with: /clr /c
ref struct R {
R() new {} // C3666
R(int i) {} // OK
};