Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
The enumerator name 'value__' is reserved and cannot be used
An item in an enumeration cannot have an identifier called value__ since it's reserved for use as the enumeration's backing field.
The following sample generates CS0076:
// CS0076.cs
public enum E
{
value__ // CS0076
}
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.