Is there a standard String method that can take multiple parameters for exact comparison?
The equivalent in T-SQL would be IN('dog','cat',...)
Eg, if there was such a method called EqualToAny() then the below code should return false
string s="catfish";
if (s.EqualToAny("dog", "cat", "human", "dolphin"))
return true;
else
return false;