| 123456789101112131415161718192021222324 |
- // -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
- //
- // System.Collections.ICollection
- //
- // Author:
- // Vladimir Vukicevic ([email protected])
- //
- // (C) 2001 Vladimir Vukicevic
- //
- using System;
- namespace System.Collections {
- public interface ICollection : IEnumerable {
- int Count { get; }
- bool IsSynchronized { get; }
- object SyncRoot { get; }
- void CopyTo (Array array, int index);
- }
- }
|