Esempio n. 1
0
 public static bool IsInArray(string searchStr, string arrStr, string splitStr)
 {
     return(IsInArray(searchStr, CommonProvider.Split(arrStr, splitStr), true));
 }
Esempio n. 2
0
 public static bool IsInArray(string searchStr, string arrStr, string splitStr, bool caseInsensetive)
 {
     return(IsInArray(searchStr, CommonProvider.Split(arrStr, splitStr), caseInsensetive));
 }
Esempio n. 3
0
 public static bool IsInArray(string searchStr, string arrStr)
 {
     return(IsInArray(searchStr, CommonProvider.Split(arrStr, ","), false));
 }