Co-authored-by: Jared Parsons <jared@paranoidcoding.org>
This commit is contained in:
Dustin Campbell 2024-09-10 08:11:42 -07:00 коммит произвёл GitHub
Родитель 8ffc0fc7d3
Коммит a3fe4c96d9
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -15,7 +15,7 @@
# Imperative Collections
- .NET provides many collection types with different characteristics for different purposes.
- Collections from the System.Collections namespace should be avoided. Never use these unless in some legacy scenario.
- The collections from the System.Collections namespace should be avoided. Never use these unless in some legacy scenario.
- The collections in System.Collections.Generic are considered the “work horse” collection types for .NET and are
suitable for most purposes. They have years of hardening that make them highly efficient choices for most work.
- Popular imperative collection types include the ones we all use on a regular basis `List<T>`, `HashSet<T>`,