Ejemplo n.º 1
0
        /*
         * CTOR - Deserializes MBR data from byte array
         */
        public MasterBootRecord(byte[] data)
        {
            //First 446 bytes are the boot sector code
            bootSector = new byte[446];
            Array.Copy(data, 0, bootSector, 0, bootSector.Length);

            //Next 64 bytes are the partition table bytes
            byte[] partitionTableBytes = new byte[64];
            Array.Copy(data, 446, partitionTableBytes, 0, partitionTableBytes.Length);

            //Deserialize partition table bytes
            partitionTable = new PartitionTable(partitionTableBytes);
        }
Ejemplo n.º 2
0
        /*
         * CTOR - Deserializes MBR data from byte array
         */
        public MasterBootRecord(byte[] data)
        {
            //First 446 bytes are the boot sector code
            bootSector = new byte[446];
            Array.Copy(data, 0, bootSector, 0, bootSector.Length);

            //Next 64 bytes are the partition table bytes
            byte[] partitionTableBytes = new byte[64];
            Array.Copy(data, 446, partitionTableBytes, 0, partitionTableBytes.Length);

            //Deserialize partition table bytes
            partitionTable = new PartitionTable(partitionTableBytes);
        }