Pretty much what the title says, I got a big if-sentence with ~5Contains
this is not nicely looking if I repeat this a few times, is there any way to shorten this?
if(word.Contains("tree") ||word.Contains("water")||word.Contains("sky")||word.Contains("lake")||word.Contains("plant"))
{
//do something
}