Compiler Error C3908
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 C3908.
access level less restrictive than 'construct'
A property accessor method (get or set) cannot have less restrictive access than the access specified on the property itself. Similarly, for event accessor methods.
For more information, see property and event.
The following sample generates C3908:
// C3908.cpp
// compile with: /clr
ref class X {
protected:
property int i {
public: // C3908 property i is protected
int get();
private:
void set(int); // OK more restrictive
};
};
Show: