Exemplo n.º 1
0
 private PartWrapper(ISaveDataPart <object> part, string f)
 {
     _part = part;
     _file = f;
 }
Exemplo n.º 2
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="part"></param>
 /// <param name="file"></param>
 /// <param name="id"></param>
 /// <exception cref="IOException"></exception>
 public PartWrapper(ISaveDataPart <object> part, string file, Guid id)
 {
     _part = part;
     _file = file + "/" + id + ".part";
     File.Create(_file).Close();
 }