Esempio n. 1
0
 public void Read(int from, int to, UnsafeCollection <T> results, int resultFrom = 0)
 {
     while (to >= from)
     {
         results[resultFrom++] = _itemsPtr[to--];
     }
 }
Esempio n. 2
0
 public void Read(UnsafeCollection <T> results)
 {
     Read(0, Count - 1, results);
 }