नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
'var' : const has no effect on literal data member; ignored
Remarks
A literal data member was also specified as const. Since a literal data member implies const, you do not need to add const to the declaration.
Example
The following example generates C4393:
// C4393.cpp
// compile with: /clr /W1 /c
ref struct Y1 {
literal const int staticConst = 10; // C4393
literal int staticConst2 = 10; // OK
};