Compiler Error CS0076
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:
C#
// 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.
.NET feedback
.NET is an open source project. Select a link to provide feedback: