Exemple #1
0
        /// <summary>
        /// Creates a new partition table on a disk containing a single partition.
        /// </summary>
        /// <param name="disk">The disk to initialize.</param>
        /// <param name="type">The partition type for the single partition</param>
        /// <returns>An object to access the newly created partition table</returns>
        public static GuidPartitionTable Initialize(VirtualDisk disk, WellKnownPartitionType type)
        {
            GuidPartitionTable pt = Initialize(disk);

            pt.Create(type, true);
            return(pt);
        }
Exemple #2
0
 internal GuidPartitionInfo(GuidPartitionTable table, GptEntry entry)
 {
     _table = table;
     _entry = entry;
 }