2004-05-01 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
[mono.git] / mcs / class / corlib / System.Collections / ICollection.cs
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 (vladimir@pobox.com)
7 //
8 // (C) 2001 Vladimir Vukicevic
9 //
10
11 using System;
12
13 namespace System.Collections {
14
15         public interface ICollection : IEnumerable {
16                 int Count { get; }
17
18                 bool IsSynchronized { get; }
19
20                 object SyncRoot { get; }
21
22                 void CopyTo (Array array, int index);
23         }
24 }