In C#, how do I specify OR:
if(this OR that) {do the other thing}
I couldn\'t find it in the help.
Update:
you need
if (title == "User greeting" || title == "User name") {do stuff};