Exemplo n.º 1
0
 internal Batch(SimpleTagger <T> tagger)
 {
     if (tagger == null)
     {
         throw new ArgumentNullException("tagger");
     }
     _tagger = tagger;
     _tagger.StartBatch();
 }
Exemplo n.º 2
0
 public void Dispose()
 {
     _tagger.EndBatch();
     _tagger = null;
     GC.SuppressFinalize(this);
 }