StringSubsetStringExpressionPathDiscovery() protected static method

protected static StringSubsetStringExpressionPathDiscovery ( String left, StringExpressionSet right, bool ignoreCase ) : bool
left String
right StringExpressionSet
ignoreCase bool
return bool
Example #1
0
 public bool IsSubsetOfPathDiscovery(StringExpressionSet ses)
 {
     if (this.IsEmpty())
     {
         return(true);
     }
     if (ses == null || ses.IsEmpty())
     {
         return(false);
     }
     this.CheckList();
     ses.CheckList();
     for (int i = 0; i < this.m_list.Count; i++)
     {
         if (!StringExpressionSet.StringSubsetStringExpressionPathDiscovery((string)this.m_list[i], ses, this.m_ignoreCase))
         {
             return(false);
         }
     }
     return(true);
 }