I have enum
[Flags] public enum MyEnum { Item1 = 32768, Item2 = 65536, Item3 = 524288, Item4 = Item3 }
Results of ToString() operat
No, because you set Item4 to be equal to Item3, and as they're just typesafe ints (enums are), the CLR can't tell the difference.
Item4
Item3
Try setting Item4 to a different value to get the expected result.