Dev2.Data.Binary_Objects.IndexListIndexIterator.IndexListIndexIterator C# (CSharp) Method

IndexListIndexIterator() public method

public IndexListIndexIterator ( IList values ) : System
values IList
return System
        public IndexListIndexIterator(IList<int> values)
        {
            _values = values;
            _enumerator = _values.GetEnumerator();
            _max = _values.Count;
            _current = 0;
        }