Exemplo n.º 1
0
      public bool MoveNext()
      {
        if (_index >= _map.Count)
        {
          return false;
        }

        if (++_index == 0)
        {
          _current = null;
        }
        else
        {
          _current = null;
        }

        return (_index < _map.Count);
      }
Exemplo n.º 2
0
 void IEnumerator.Reset()
 {
     _index   = -1;
     _current = null;
 }
Exemplo n.º 3
0
 void IEnumerator.Reset()
 {
   _index = -1;
   _current = null;
 }