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 ||
And is &&
Update for changed question:
You need to specify what you are comparing against in each logical section of the if statement.
if (title == "User greeting" || title == "User name") { // do stuff }