From 4f800bf981a2e94aa2f05aebe4b0636641365b47 Mon Sep 17 00:00:00 2001 From: C++ AHS <34786330+ChlorineX@users.noreply.github.com> Date: Tue, 28 Apr 2020 19:41:42 +0800 Subject: [PATCH] Implement ICollection for List --- BeefLibs/corlib/src/Collections/Generic/List.bf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BeefLibs/corlib/src/Collections/Generic/List.bf b/BeefLibs/corlib/src/Collections/Generic/List.bf index 1ce7c14e..5b012c33 100644 --- a/BeefLibs/corlib/src/Collections/Generic/List.bf +++ b/BeefLibs/corlib/src/Collections/Generic/List.bf @@ -23,7 +23,7 @@ namespace System.Collections.Generic } } - public class List : IEnumerable, IList + public class List : IEnumerable, IList, ICollection { private const int_cosize cDefaultCapacity = 4;