mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-14 14:24:10 +02:00
Implement ICollection for List
This commit is contained in:
parent
1fc7c0ec08
commit
4f800bf981
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ namespace System.Collections.Generic
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public class List<T> : IEnumerable<T>, IList
|
public class List<T> : IEnumerable<T>, IList, ICollection<T>
|
||||||
{
|
{
|
||||||
private const int_cosize cDefaultCapacity = 4;
|
private const int_cosize cDefaultCapacity = 4;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue