ICollection.cs 428 B

123456789101112131415161718192021222324
  1. // -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
  2. //
  3. // System.Collections.ICollection
  4. //
  5. // Author:
  6. // Vladimir Vukicevic ([email protected])
  7. //
  8. // (C) 2001 Vladimir Vukicevic
  9. //
  10. using System;
  11. namespace System.Collections {
  12. public interface ICollection : IEnumerable {
  13. int Count { get; }
  14. bool IsSynchronized { get; }
  15. object SyncRoot { get; }
  16. void CopyTo (Array array, int index);
  17. }
  18. }