I have a string list and I have a comma separated String.
I would like to do something like:
StringList.Contains(CommaSeparatedStrings);
So for example I have a list like:
StringList.Add(Admin);
StringList.Add(Nurse);
StringList.Add(Cook);
CommaSeparatedStrings = "Admin,Nurse";
So the above mentioned function should return true.