Nóta
Teastaíonn údarú chun rochtain a fháil ar an leathanach seo. Is féidir leat triail a bhaint as shíniú isteach nó eolairí a athrú.
Teastaíonn údarú chun rochtain a fháil ar an leathanach seo. Is féidir leat triail a bhaint as eolairí a athrú.
'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
};