コード例 #1
0
ファイル: RawContinuedBlock.cs プロジェクト: RainsSoft/panda
 public RawContinuedBlock(RawBlockManager manager, BlockOffset offset, uint blockSize)
     : base(manager, offset, blockSize)
 {
 }
コード例 #2
0
ファイル: RawBlock.cs プロジェクト: RainsSoft/panda
 public RawBlock([NotNull] RawBlockManager manager, BlockOffset offset, uint blockSize)
 {
     _manager = manager;
     _offset = offset;
     _blockSize = blockSize;
 }