A lot of times I see flag enum declarations that use hexadecimal values. For example:
[Flags]
public enum MyEnum
{
None = 0x0,
Flag1 = 0x1,
Flag2 = 0x2,
Flag3 = 0x4,
Flag4 = 0x8,
Flag5 = 0x10
}
When I declare an enum, I usually declare it like this:
[Flags]
public enum MyEnum
{
None = 0,
Flag1 = 1,
Flag2 = 2,
Flag3 = 4,
Flag4 = 8,
Flag5 = 16
}
Is there a reason or rationale to why some people choose to write the value in hexadecimal rather than decimal? The way I see it, it's easier to get confused when using hex values and accidentally write Flag5 = 0x16 instead of Flag5 = 0x10.

10rather than0x10if you used decimal numbers? Particularly since these are binary numbers we're dealing with, and hex is trivially convertible to/from binary?0x111is far less annoying to translate in one's head than273... – cHao Nov 4 '12 at 20:43Flag1 | Flag2is 3, and 3 does not correspond to any domain value ofMyEnum. – Kaz Nov 5 '12 at 4:29