namespace Gs.Toolbox { public static class StringExtension { public static bool IsIn(this string str, params string[] ps) { if (ps.Contains(str)) { return true; } return false; } } }