1234567891011121314151617181920212223242526272829303132 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using Utilities;
- using DiskAccessLibrary.FileSystems.NTFS;
- namespace DiskAccessLibrary
- {
-
-
-
-
-
-
-
- public class RemovableVolume : Partition
- {
- public RemovableVolume(DiskExtent extent) : base(extent)
- {
- }
- public RemovableVolume(Disk disk) : base(disk, 0, disk.Size)
- {
- }
- }
- }
|