I am using Enum flags in my application. The Enum can have around 50+ values, so values go up to 2^50. I was just wondering, can I use Math.Pow(2, variable) to calc
Math.Pow(2, variable)
I'd be tempted to consider using BitArray as the underlying structure.