Hi,
I would like to use "as" and "is" as members of an enumeration. I know that this is possible in VB.NET to write it like this:
Public Enum Test
[as] = 1
[is] = 2
End Enum
How do I write the equivalent statement in C#? This:
public enum Test
{
as = 1,
is = 2
}
does not compile.
Thanks in advance.