नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
'property' : a property with this name already exists
Remarks
The compiler encountered more than one property with the same name. Each property in a type must have a unique name.
For more information, see property.
Example
The following example generates C3296.
// C3296.cpp
// compile with: /clr /c
using namespace System;
ref class R {
public:
property int MyProp[int] { int get(int); }
property String^ MyProp[int] { void set(int, String^); } // C3296
};