Esempio n. 1
0
 public MassStorage(string underlyingFile, int? numberOfBlocks = null, int blockSize = 512, bool persistent = true)
 {
     lbaBackend = new LBABackend(underlyingFile, numberOfBlocks, blockSize, persistent);
     Init();
     
 }
Esempio n. 2
0
 public MassStorage(int numberOfBlocks, int blockSize = 512)
 {
     lbaBackend = new LBABackend(numberOfBlocks, blockSize);
     Init();
 }