C# – Reserved Keyword in Enumeration in C#

.net-2.0c++vb.net

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#?
The following code does not compile:

public enum Test
{
    as = 1,
    is = 2
}

Best Solution

Prefixing reserved words in C# is done with @.

public enum Test
{
    @as = 1,
    @is = 2
}