Can we do like this in enums
enum myStringEnum {
enumItem1 = "value 1",
enumItem2 = "value 2",
etc
}
i.e.spaces in the string value, I know we can assign int value to enum
but I m not sure whether string values (with spaces) can be assigned to enums.
If no, then can we have some alternative?
Since I want the string values with spaces in enum