예제 #1
0
 public static FuzzyMatcher Create(string query, MatchOption opt)
 {
     return new FuzzyMatcher(query, opt);
 }
예제 #2
0
파일: FuzzyMatcher.cs 프로젝트: sgww/cozy
 public static FuzzyMatcher Create(string query, MatchOption opt)
 {
     return(new FuzzyMatcher(query, opt));
 }
예제 #3
0
 private FuzzyMatcher(string query, MatchOption opt)
 {
     this.query = query.Trim();
     this.opt = opt;
 }
예제 #4
0
파일: FuzzyMatcher.cs 프로젝트: sgww/cozy
 private FuzzyMatcher(string query, MatchOption opt)
 {
     this.query = query.Trim();
     this.opt   = opt;
 }