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

Implement ICollection for List

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

View file

@ -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;