ComponentCollection.cs 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. //
  2. // System.ComponentModel.ComponentCollection.cs
  3. //
  4. // Author:
  5. // Miguel de Icaza ([email protected])
  6. // Tim Coleman ([email protected])
  7. //
  8. // (C) Ximian, Inc. http://www.ximian.com
  9. // Copyright (C) Tim Coleman, 2002
  10. //
  11. using System.Collections;
  12. using System.Runtime.InteropServices;
  13. namespace System.ComponentModel {
  14. [ComVisible (true)]
  15. public class ComponentCollection : ReadOnlyCollectionBase {
  16. #region Constructors
  17. [MonoTODO]
  18. public ComponentCollection (IComponent[] components)
  19. {
  20. throw new NotImplementedException ();
  21. }
  22. #endregion // Constructors
  23. #region Properties
  24. public virtual IComponent this [string name] {
  25. [MonoTODO]
  26. get { throw new NotImplementedException (); }
  27. }
  28. public virtual IComponent this [int index] {
  29. [MonoTODO]
  30. get { throw new NotImplementedException (); }
  31. }
  32. #endregion // Properties
  33. #region Methods
  34. [MonoTODO]
  35. public void CopyTo (IComponent[] array, int index)
  36. {
  37. throw new NotImplementedException ();
  38. }
  39. #endregion // Methods
  40. }
  41. }