TextElementEnumerator.cs 790 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. //
  2. // System.Globalization.TextElementEnumerator.cs
  3. //
  4. // Author:
  5. // Dick Porter ([email protected])
  6. //
  7. // (C) 2002 Ximian, Inc.
  8. //
  9. using System.Collections;
  10. namespace System.Globalization {
  11. [Serializable]
  12. public class TextElementEnumerator: IEnumerator {
  13. /* Hide the .ctor() */
  14. TextElementEnumerator() {}
  15. [MonoTODO]
  16. public object Current
  17. {
  18. get {
  19. throw new NotImplementedException();
  20. }
  21. }
  22. [MonoTODO]
  23. public int ElementIndex
  24. {
  25. get {
  26. throw new NotImplementedException();
  27. }
  28. }
  29. [MonoTODO]
  30. public string GetTextElement()
  31. {
  32. throw new NotImplementedException();
  33. }
  34. [MonoTODO]
  35. public bool MoveNext()
  36. {
  37. throw new NotImplementedException();
  38. }
  39. [MonoTODO]
  40. public void Reset()
  41. {
  42. throw new NotImplementedException();
  43. }
  44. }
  45. }