All I could find from my research is that with all the myriad of string
operators there are in vb.net this is not as simple as just a function. I'm
really surprised. I figured on something like this:
If CompareMany(SomeVar, "yellow", "green", "blue", "orange", "pink")
where the 1st param is the value that may or may not exist in the list that
follows and the list can contain any number of values. I used such a
function once in Delphi I think. Can't remember for sure which language.
Anyway, I ended up usign a case statement. Works fine but not as elegant as
I'd like.