如何使用“ |” CLI中的运算符?

时间:2019-07-31 06:19:59

标签: c++-cli

我要在CLI中使用“或运算符”。

    Boolean error = true;
    enum struct Status :System::UInt32
    {
        Normal = 0x00,
        abNormal = 0x01
    };

    Status test = Status::Normal;

    if (error)
        test = test | Status::abNormal;

不允许任何运算符使用“状态”格式作为左操作数,或者不允许进行转换。

0 个答案:

没有答案