File: System\Windows\Forms\Controls\ListBoxes\ListBox.SelectedIndexCollection.SelectedIndexEnumerator.cs
Web Access
Project: src\src\System.Windows.Forms\src\System.Windows.Forms.csproj (System.Windows.Forms)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using System.Collections;
 
namespace System.Windows.Forms;
 
public partial class ListBox
{
    public partial class SelectedIndexCollection : IList
    {
        /// <summary>
        ///  EntryEnumerator is an enumerator that will enumerate over
        ///  a given state mask.
        /// </summary>
        private class SelectedIndexEnumerator : IEnumerator
        {
            private readonly SelectedIndexCollection _items;
            private int _current;
 
            /// <summary>
            ///  Creates a new enumerator that will enumerate over the given state.
            /// </summary>
            public SelectedIndexEnumerator(SelectedIndexCollection items)
            {
                _items = items;
                _current = -1;
            }
 
            /// <summary>
            ///  Moves to the next element, or returns false if at the end.
            /// </summary>
            bool IEnumerator.MoveNext()
            {
                if (_current < _items.Count - 1)
                {
                    _current++;
                    return true;
                }
                else
                {
                    _current = _items.Count;
                    return false;
                }
            }
 
            /// <summary>
            ///  Resets the enumeration back to the beginning.
            /// </summary>
            void IEnumerator.Reset()
            {
                _current = -1;
            }
 
            /// <summary>
            ///  Retrieves the current value in the enumerator.
            /// </summary>
            object IEnumerator.Current
            {
                get
                {
                    if (_current == -1 || _current == _items.Count)
                    {
                        throw new InvalidOperationException(SR.ListEnumCurrentOutOfRange);
                    }
 
                    return _items[_current];
                }
            }
        }
    }
}