I have enum
[Flags] public enum MyEnum { Item1 = 32768, Item2 = 65536, Item3 = 524288, Item4 = Item3 }
Results of ToString() operat
No, because enum aren't collections of strings. They are value types that can contain an integral of a certain type (normally an int), where some of these integrals are connected to a "name" (your Item4)
enum
int