I am looking at https://msdn.microsoft.com/en-us/library/windows/desktop/aa384024%28v=vs.85%29.aspx
Sunday = 1 Monday = 2 Tuesday = 4 Wednesday =8 Thursday = 16 Friday = 32 Saturday= 64
This property contains an aggregated value of selected DayOfWeek in the Scheduled Tasks. For example, value 66 is Monday or Sunday.
I would like to convert this value to a List(of DayOfWeek).
What is the best approach to convert values like this?
Monday | Saturday, notMonday | Sunday. - Jacob