InputLanguageCollection.cs 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. //
  2. // System.Windows.Forms.InputLanguageCollection.cs
  3. //
  4. // Author:
  5. // stubbed out by Daniel Carrera ([email protected])
  6. // Dennis Hayes ([email protected])
  7. //
  8. // (C) 2002 Ximian, Inc
  9. //
  10. using System.Collections;
  11. namespace System.Windows.Forms {
  12. // <summary>
  13. // This is only a template. Nothing is implemented yet.
  14. //
  15. // </summary>
  16. public class InputLanguageCollection : ReadOnlyCollectionBase {
  17. //
  18. // --- Public Properties
  19. //
  20. [MonoTODO]
  21. public InputLanguage this[int index] {
  22. get {
  23. throw new NotImplementedException ();
  24. }
  25. }
  26. //
  27. // --- Public Methods
  28. //
  29. [MonoTODO]
  30. public bool Contains(InputLanguage lang)
  31. {
  32. throw new NotImplementedException ();
  33. }
  34. [MonoTODO]
  35. public void CopyTo(InputLanguage[] array, int index)
  36. {
  37. throw new NotImplementedException ();
  38. }
  39. [MonoTODO]
  40. public override bool Equals(object o)
  41. {
  42. throw new NotImplementedException ();
  43. }
  44. [MonoTODO]
  45. public override int GetHashCode() {
  46. //FIXME add our proprities
  47. return base.GetHashCode();
  48. }
  49. [MonoTODO]
  50. public int IndexOf(InputLanguage lang)
  51. {
  52. throw new NotImplementedException ();
  53. }
  54. //public static bool Equals(object o1, object o2)
  55. //{
  56. // throw new NotImplementedException ();
  57. //}
  58. }
  59. }