I want to see if there is a cleaner way to do this logic. I have a working sample:
public static Boolean passwordchecker(string userName) { string[] group = new string[] { "a", "b" }; if (group[0] == userName || group[1] == userName) { return true; } else { return false; } }
group
will be coming most likely from a database table or some other dynamic source, and depending on the application there could be anywhere from a handful of users to tens or hundreds of millions. These considerations should guide your design decisions. Can you state the significant requirements?\$\endgroup\$