Posted by: usmanahmad on: August 1, 2006
In VB.net; you use brackets to delimit the word.
Public Enum test
[Public]
[Private]
End Enum
SubMain()
Dime As test = test.Private
EndSub
Such things are called Escaped Identifiers, and the equivalent in c# is the @ character.
public enum test {
@public,
@private
}
static void main() {
test e [...]