我要在CLI中使用“或运算符”。
我
Boolean error = true;
enum struct Status :System::UInt32
{
Normal = 0x00,
abNormal = 0x01
};
Status test = Status::Normal;
if (error)
test = test | Status::abNormal;
不允许任何运算符使用“状态”格式作为左操作数,或者不允许进行转换。