public void TakeFromTXTFile(string locationFile)
 {
     _textFactory = new TxtFile(locationFile,DataManager);
     _textFactory.Populate();
     Multi = _textFactory._multi;
 }
Beispiel #2
0
 public TxtFile(string location,UODataManager data)
 {
     _location = location;
     _multi = new MultiCollection(data);
 }