

List.Add(), List.AddRange(), List.Insert(), and List.InsertRange() methods are used to add and insert items to a List. List is a generic collection in C#, which allows you to create strongly typed list of objects, using the list you can create collection of objects, sort the items in list, find the items in list and add/removed items from list at specific index location of item. If you are learning C# then you will encounter C# collection and C# list, which are very important topics in learning C#, so in this article, I am going to provide you console application example to add items in C# list or add multiple items in C# list.
