:The problem:
enum:
enum Choice
{
A,
B,
C
}
I would like to pass it to function like that:
void function(Choice.A | Choice.B)
{
//how do I determine what was passed here??
//how to handle two or more values??
}
Thanks in adv