The enumerator name 'value__' is reserved and cannot be used
An item in an enumeration cannot have an identifier called value__.
The following sample generates CS0076:
using System; enum Myint : long { value__ = 3L // CS0076, cannot use the name value__ } class MyClass{ public static void Main() { } }