FlagsAttribute Enum problems
The definition of the shift operators means that only the 5 least significant bits are used for 32-bit numbers and only the first 6 bits for 64-bit; meaning: 1 << 5 is identical to 1 << 37 (both are 32) By making it: MsgrVersion9 = 1L << 32 you make it a 64-bit number, which … Read more