ComponentCollection.cs 306 B

1234567891011121314151617181920
  1. //
  2. // System.ComponentModel.ComponentCollection.cs
  3. //
  4. // Author:
  5. // Miguel de Icaza ([email protected])
  6. //
  7. // (C) Ximian, Inc. http://www.ximian.com
  8. //
  9. namespace System.ComponentModel {
  10. public class ComponentCollection { // FIXME: ReadOnlyCollectionBase
  11. public void Dispose ()
  12. {
  13. }
  14. }
  15. }