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