I got a very simple binary mask.
1 = Sunday
2 = Saturday
4 = Friday
8 = Thursday
16 = Wednesday
32 = Tuesday
64 = Monday
So if you want a combination of Wednesday, Thursday and Friday you get 16 + 8 + 4 = 28
Now further along my code I only have the mapped binary value. What would be the best way to 'remap' this value (28) to Wed, Thu and Fri?
Hope to get some input on how to do this :).
Kind regards, Niels
You should use an enum:
A simple explicit conversion will do the "remapping" you're interested in:
You can easily use normal bitwise operations:
And you could do that in a loop:
Even just using
Console.WriteLine(days)
will give you a comma-separated representation.You may also find the utility methods in my Unconstrained Melody library useful (in particular the
Flags
code).If you're looking for something else, please be more specific.