123456789101112131415161718192021222324252627282930 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace DiskAccessLibrary
- {
- public interface IDiskGeometry
- {
- long Cylinders
- {
- get;
- }
- int TracksPerCylinder
- {
- get;
- }
- int SectorsPerTrack
- {
- get;
- }
- }
- }
|