| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- //
- // System.Globalization.TextElementEnumerator.cs
- //
- // Author:
- // Dick Porter ([email protected])
- //
- // (C) 2002 Ximian, Inc.
- //
- using System.Collections;
- namespace System.Globalization {
- [Serializable]
- public class TextElementEnumerator: IEnumerator {
- /* Hide the .ctor() */
- TextElementEnumerator() {}
- [MonoTODO]
- public object Current
- {
- get {
- throw new NotImplementedException();
- }
- }
- [MonoTODO]
- public int ElementIndex
- {
- get {
- throw new NotImplementedException();
- }
- }
- [MonoTODO]
- public string GetTextElement()
- {
- throw new NotImplementedException();
- }
- [MonoTODO]
- public bool MoveNext()
- {
- throw new NotImplementedException();
- }
- [MonoTODO]
- public void Reset()
- {
- throw new NotImplementedException();
- }
- }
- }
|