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