Example #1
0
 public static ParserCharSet operator +(ParserCharSet set1, ParserCharSet set2)
 {
     ParserCharSet result = new ParserCharSet(set1);
     result.Add(set2);
     return result;
 }