Identifier expected
You did not supply an identifier. For example, when declaring an enum, you must specify members.
The following sample generates CS1001:
public class clx { enum splitch : int { 'a', 'b' // CS1001, 'a' is not a valid int identifier }; public static void Main() { } }