Ejemplo n.º 1
0
 public static FuzzyMatcher Create(string query, MatchOption opt)
 {
     return new FuzzyMatcher(query, opt);
 }
Ejemplo n.º 2
0
 public static FuzzyMatcher Create(string query, MatchOption opt)
 {
     return(new FuzzyMatcher(query, opt));
 }
Ejemplo n.º 3
0
 private FuzzyMatcher(string query, MatchOption opt)
 {
     this.query = query.Trim();
     this.opt = opt;
 }
Ejemplo n.º 4
0
 private FuzzyMatcher(string query, MatchOption opt)
 {
     this.query = query.Trim();
     this.opt   = opt;
 }