I want to set the space on my enum. Here is my code sample:
public enum category { goodBoy=1, BadBoy }
I want to set
You cannot have enum with spaces in .Net. This was possible with earlier versions of VB and C++ of course, but not any longer. I remember that in VB6 I used to enclose them in square brackets, but not in C#.