1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 04:22:20 +02:00

Create ICollection.bf

This commit is contained in:
C++ AHS 2020-04-28 19:41:10 +08:00 committed by GitHub
parent 966b886fcc
commit 1fc7c0ec08
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,16 @@
namespace System.Collections.Generic
{
interface ICollection<T>
{
public abstract int Count
{
get;
}
public void Add(T item);
public void Clear();
public bool Contains(T item);
public void CopyTo(T[] arr, int index);
public bool Remove(T item);
}
}