示例#1
0
        public int AllocateSector()
        {
            int newSectorID = ShortSectorAllocationTable.Count;

            LinkSectorID(newSectorID, SID.EOC);
            Document.AllocateNewShortSector();
            Document.Header.NumberOfShortSectors++;
            return(newSectorID);
        }