i have to create an enum that contains values that are having spaces
public enum MyEnum { My cart, Selected items, Bi
As per the C# specification, "An enumerator may not contain white space in its name." (see http://msdn.microsoft.com/en-us/library/sbbt4032.aspx) Why do you need this?