In C#, how do I specify OR:
if(this OR that) {do the other thing}
I couldn\'t find it in the help.
Update:
OR is used as "||"
if(expr1 || expr2) { do something }