StringInfo.cs 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. //
  2. // System.Globalization.StringInfo.cs
  3. //
  4. // Author:
  5. // Dick Porter ([email protected])
  6. //
  7. // (C) 2002 Ximian, Inc.
  8. //
  9. namespace System.Globalization {
  10. [Serializable]
  11. public class StringInfo {
  12. [MonoTODO]
  13. public StringInfo()
  14. {
  15. throw new NotImplementedException();
  16. }
  17. [MonoTODO]
  18. public static string GetNextTextElement(string str)
  19. {
  20. if(str == null) {
  21. throw new ArgumentNullException("string is null");
  22. }
  23. throw new NotImplementedException();
  24. }
  25. [MonoTODO]
  26. public static string GetNextTextElement(string str, int index)
  27. {
  28. if(str == null) {
  29. throw new ArgumentNullException("string is null");
  30. }
  31. throw new NotImplementedException();
  32. }
  33. [MonoTODO]
  34. public static TextElementEnumerator GetTextElementEnumerator(string str)
  35. {
  36. if(str == null) {
  37. throw new ArgumentNullException("string is null");
  38. }
  39. throw new NotImplementedException();
  40. }
  41. [MonoTODO]
  42. public static TextElementEnumerator GetTextElementEnumerator(string str, int index)
  43. {
  44. if(str == null) {
  45. throw new ArgumentNullException("string is null");
  46. }
  47. throw new NotImplementedException();
  48. }
  49. [MonoTODO]
  50. public static int[] ParseCombiningCharacters(string str)
  51. {
  52. if(str == null) {
  53. throw new ArgumentNullException("string is null");
  54. }
  55. throw new NotImplementedException();
  56. }
  57. }
  58. }