summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/CharEnumerator.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/mscorlib/src/System/CharEnumerator.cs')
-rw-r--r--src/mscorlib/src/System/CharEnumerator.cs75
1 files changed, 75 insertions, 0 deletions
diff --git a/src/mscorlib/src/System/CharEnumerator.cs b/src/mscorlib/src/System/CharEnumerator.cs
new file mode 100644
index 0000000000..d25294c7e2
--- /dev/null
+++ b/src/mscorlib/src/System/CharEnumerator.cs
@@ -0,0 +1,75 @@
+// 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.
+**
+**
+============================================================*/
+namespace System {
+
+ using System.Collections;
+ using System.Collections.Generic;
+ using System.Diagnostics.Contracts;
+
+[System.Runtime.InteropServices.ComVisible(true)]
+ [Serializable]
+ public sealed class CharEnumerator : IEnumerator, ICloneable, IEnumerator<char>, IDisposable {
+ private String str;
+ private int index;
+ private char currentElement;
+
+ internal CharEnumerator(String str) {
+ Contract.Requires(str != null);
+ this.str = str;
+ this.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;
+ }
+
+ /// <internalonly/>
+ Object IEnumerator.Current {
+ get { return Current; }
+ }
+
+ public char Current {
+ get {
+ if (index == -1)
+ throw new InvalidOperationException(Environment.GetResourceString(ResId.InvalidOperation_EnumNotStarted));
+ if (index >= str.Length)
+ throw new InvalidOperationException(Environment.GetResourceString(ResId.InvalidOperation_EnumEnded));
+ return currentElement;
+ }
+ }
+
+ public void Reset() {
+ currentElement = (char)0;
+ index = -1;
+ }
+ }
+}