Ejemplo n.º 1
0
 public HeapCellArray(int aGranularity)
 {
     iComparer   = new HeapCellComparerByAddress();
     iSortedList = new SortedList <uint, HeapCell>();
     iFlatList   = new List <HeapCell>(aGranularity);
 }
Ejemplo n.º 2
0
        public void SortByAddress()
        {
            IComparer <HeapCell> comparer = new HeapCellComparerByAddress();

            Sort(comparer);
        }