LoadOffset() static private method

static private LoadOffset ( BinaryReader reader, NintendoOpticalDiscSystem system ) : long
reader System.IO.BinaryReader
system NintendoOpticalDiscSystem
return long
コード例 #1
0
 internal NintendoOpticalDiscPartitionFile(FolderAsset parent, int index, int nameOffset, BinaryReader reader, NintendoOpticalDiscSystem system)
     : base(parent, "")
 {
     Index      = index;
     NameOffset = nameOffset;
     DataOffset = NintendoOpticalDiscPartition.LoadOffset(reader, system);
     Size       = reader.ReadUInt32();
 }