StringSubsetStringPathDiscovery() protected static method

protected static StringSubsetStringPathDiscovery ( String left, String right, bool ignoreCase ) : bool
left String
right String
ignoreCase bool
return bool
Example #1
0
 private static bool StringSubsetStringExpressionPathDiscovery(string left, StringExpressionSet right, bool ignoreCase)
 {
     for (int i = 0; i < right.m_list.Count; i++)
     {
         if (StringExpressionSet.StringSubsetStringPathDiscovery(left, (string)right.m_list[i], ignoreCase))
         {
             return(true);
         }
     }
     return(false);
 }