Newer
Older
DNA / corlib / System.Collections / ICollection.cs
@Chris Bacon Chris Bacon on 21 Jan 2012 243 bytes First commit
#if !LOCALTEST

using System;

namespace System.Collections {
	public interface ICollection : IEnumerable {

		int Count { get; }

		bool IsSynchronized { get; }

		object SyncRoot { get; }

		void CopyTo(Array array, int index);

	}
}
#endif