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