コード例 #1
0
ファイル: matcher.cs プロジェクト: j3r3miah/VimFastFind
 public virtual void Dispose()
 {
     if (!_disposed)
     {
         _pathmatcher.Dispose();
         _pathmatcher = null;
         _grepmatcher.Dispose();
         _grepmatcher = null;
         _disposed    = true;
     }
 }
コード例 #2
0
ファイル: matcher.cs プロジェクト: j3r3miah/VimFastFind
 public Matcher(DirConfig config)
 {
     this.Config  = config;
     _pathmatcher = new PathMatcher(config);
     _grepmatcher = new GrepMatcher(config);
 }