Hello, lets say I have this code here:
if(Something)
condition |= Class1.Class2.SomeId;
else
condition &= Class1.Class2.SomeId;
The code is the same except for the &= and |=. Can I somehow create 2 operator "variables" and just use them in the code, like this:
condition "myoperator" Class1.Class2.SomeId;
Thanks :-)