示例#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;
 }