NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Compiler Error CS0076

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() {
   }
}