Esempio n. 1
0
 public static int InArrayIndexOf(string originalStr, string[] strArray)
 {
     return(TextUtility.InArrayIndexOf(originalStr, strArray, true));
 }
Esempio n. 2
0
 public static bool InArray(string matchStr, string[] strArray, bool ignoreCase)
 {
     return(TextUtility.InArrayIndexOf(matchStr, strArray, ignoreCase) >= 0);
 }