Exemplo n.º 1
0
 static TypeParameters ManageEnum(TypeParameters list, TypeParameters type)
 {
     return(list.HasFlag(type)
         ? list ^ type
         : list | type);
 }