I have the following Enum in CLR / CLI:
public enum class Days
{
    Sunday,
    Monday,
    Tuesday,
    Wednesday,
    Thursday,
    Friday,
    Saturday
};
In C#, if I wanted to create a combination of the selected enums, I used to add [Flags] attribute before the declaration of the enum.
Does anything similar to that exist in C++ CLR?
 
     
    