mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 20:42:21 +02:00
Create ICollection.bf
This commit is contained in:
parent
966b886fcc
commit
1fc7c0ec08
1 changed files with 16 additions and 0 deletions
16
BeefLibs/corlib/src/Collections/Generic/ICollection.bf
Normal file
16
BeefLibs/corlib/src/Collections/Generic/ICollection.bf
Normal 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);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue