Ejemplo n.º 1
0
 private void Dispose(bool disposing)
 {
     if (_storage != null)
     {
         _storage.Dispose();
         _storage = null;
     }
 }
Ejemplo n.º 2
0
 public TargetDictionaryBuilder(string workingDir)
 {
     if (String.IsNullOrEmpty(workingDir))
     {
         _storage = new DictionaryTargetStorage();
     }
     else
     {
         _storage = new DictionaryTargetStorage(workingDir);
     }
 }