| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- // Licensed to the .NET Foundation under one or more agreements.
- // The .NET Foundation licenses this file to you under the MIT license.
- // See the LICENSE file in the project root for more information.
- /*============================================================
- **
- **
- **
- ** Purpose: Enumerates the characters on a string. skips range
- ** checks.
- **
- **
- ============================================================*/
- using System.Collections;
- using System.Collections.Generic;
- namespace System
- {
- public sealed class CharEnumerator : IEnumerator, IEnumerator<char>, IDisposable, ICloneable
- {
- private string _str;
- private int _index;
- private char _currentElement;
- internal CharEnumerator(string str)
- {
- _str = str;
- _index = -1;
- }
- public object Clone()
- {
- return MemberwiseClone();
- }
- public bool MoveNext()
- {
- if (_index < (_str.Length - 1))
- {
- _index++;
- _currentElement = _str[_index];
- return true;
- }
- else
- _index = _str.Length;
- return false;
- }
- public void Dispose()
- {
- if (_str != null)
- _index = _str.Length;
- _str = null;
- }
- object IEnumerator.Current
- {
- get { return Current; }
- }
- public char Current
- {
- get
- {
- if (_index == -1)
- throw new InvalidOperationException(SR.InvalidOperation_EnumNotStarted);
- if (_index >= _str.Length)
- throw new InvalidOperationException(SR.InvalidOperation_EnumEnded);
- return _currentElement;
- }
- }
- public void Reset()
- {
- _currentElement = (char)0;
- _index = -1;
- }
- }
- }
|