Exemplo n.º 1
0
 public PointerEnumerator(Pointer <T> begin, Pointer <T> end)
 {
     _begin = begin;
     _end   = end;
     Reset();
 }
Exemplo n.º 2
0
 public PointerEnumerator(Pointer <T> begin, int count) : this(begin, begin + count)
 {
 }