Compiler Error C3804
Visual Studio 2015
The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.
The latest version of this topic can be found at Compiler Error C3804.
property_accessor': the accessor methods for a property must either be all static or all non-static
When defining a non-trivial property, the accessor functions can be either static or instance, but not both.
See property for more information.
The following sample generates C3804.
// C3804.cpp
// compile with: /c /clr
ref struct A {
property int i {
static int get() {}
void set(int i) {}
} // C3804 error
// OK
property int j {
int get() { return 0; }
void set(int i) {}
}
property int k {
static int get() { return 0; }
static void set(int i) {}
}
};
Show: