[system] Part of fix for bug #683339. NameValueCollection.Add (NameValueCollection...
[mono.git] / mcs / class / System / System.Collections.Specialized / StringEnumerator.cs
1 \r
2 //\r
3 // Permission is hereby granted, free of charge, to any person obtaining\r
4 // a copy of this software and associated documentation files (the\r
5 // "Software"), to deal in the Software without restriction, including\r
6 // without limitation the rights to use, copy, modify, merge, publish,\r
7 // distribute, sublicense, and/or sell copies of the Software, and to\r
8 // permit persons to whom the Software is furnished to do so, subject to\r
9 // the following conditions:\r
10 // \r
11 // The above copyright notice and this permission notice shall be\r
12 // included in all copies or substantial portions of the Software.\r
13 // \r
14 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,\r
15 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\r
16 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\r
17 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\r
18 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\r
19 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\r
20 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r
21 //\r
22 /* System.Collections.Specialized.StringEnumerator.cs\r
23  * Authors:\r
24  *   John Barnette (jbarn@httcb.net)\r
25  *\r
26  *  Copyright (C) 2001 John Barnette\r
27 */\r
28 \r
29 namespace System.Collections.Specialized {\r
30         public class StringEnumerator {\r
31                 private IEnumerator enumerable;\r
32                 \r
33                 // assembly-scoped constructor\r
34                 internal StringEnumerator(StringCollection coll) {\r
35                         this.enumerable = ((IEnumerable)coll).GetEnumerator();\r
36                 }\r
37                 \r
38                 // Public Instance Properties\r
39                 \r
40                 public string Current {\r
41                         get { return (string) enumerable.Current; }\r
42                 }\r
43                 \r
44                 \r
45                 // Public Instance Methods\r
46                 \r
47                 public bool MoveNext() {\r
48                         return enumerable.MoveNext();\r
49                 }\r
50                 \r
51                 public void Reset() {\r
52                         enumerable.Reset();\r
53                 }\r
54         }\r
55 }\r