ListControl.ObjectCollection.cs 264 B

123456789101112
  1. using System.Collections;
  2. namespace System.Windows.Forms
  3. {
  4. public partial class ListControl
  5. {
  6. public class ObjectCollection : ObjectCollectionBase
  7. {
  8. internal ObjectCollection(IList items) : base(items) { }
  9. }
  10. }
  11. }