CategoryNameCollection.cs 1010 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. // System.Drawing.Design.CategoryNameCollection.cs
  2. //
  3. // Author:
  4. // Alejandro Sánchez Acosta
  5. //
  6. // (C) Alejandro Sánchez Acosta
  7. //
  8. using System.Collections;
  9. namespace System.Drawing.Design
  10. {
  11. public sealed class CategoryNameCollection : ReadOnlyCollectionBase
  12. {
  13. private int index;
  14. [MonoTODO]
  15. public CategoryNameCollection (CategoryNameCollection value) {
  16. throw new NotImplementedException ();
  17. }
  18. [MonoTODO]
  19. public CategoryNameCollection(string[] value) {
  20. throw new NotImplementedException ();
  21. }
  22. [MonoTODO]
  23. public string this[int index] {
  24. get {
  25. throw new NotImplementedException ();
  26. }
  27. set {
  28. throw new NotImplementedException ();
  29. }
  30. }
  31. [MonoTODO]
  32. public bool Contains (string value)
  33. {
  34. throw new NotImplementedException ();
  35. }
  36. [MonoTODO]
  37. public void CopyTo (string[] array, int index)
  38. {
  39. throw new NotImplementedException ();
  40. }
  41. [MonoTODO]
  42. public int IndexOf (string value)
  43. {
  44. throw new NotImplementedException ();
  45. }
  46. }
  47. }