.NET Standard 2.0 Cookbook
上QQ阅读APP看书,第一时间看更新

Creating collections

There are three kind of collections supported inside the .NET Framework. In this recipe, we will be focusing on using these collections inside a .NET Standard 2.0 library. In general, collections are used to manage groups of related objects. Creating arrays of objects is a way of grouping related objects. But our focus is on using these collections, which is the second method of grouping related objects.