ComponentFactory.Krypton.Toolkit.KryptonCheckedListBox.CheckedIndexCollection.GetEnumerator C# (CSharp) Method

GetEnumerator() public method

Enumerate using non-generic interface.
public GetEnumerator ( ) : IEnumerator
return IEnumerator
            public IEnumerator GetEnumerator()
            {
                int[] dest = new int[Count];
                CopyTo(dest, 0);
                return dest.GetEnumerator();
            }