Answers for "c# how to add an object to a list"

C#
10

add object to list c#

List<Author> authors = new List<Author>  
{  
    new Author { Name = "Mahesh Chand", Book = "ADO.NET Programming", Price = 49.95 },  
    new Author { Name = "Neel Beniwal", Book = "Jump Ball", Price = 19.95 },  
    new Author { Name = "Chris Love", Book = "Practical PWA", Price = 29.95 }  
};  
// Add more items to the list  
authors.Add(new Author { Name = "Mahesh Chand", Book = "Graphics with GDI+", Price = 49.95 });  
authors.Add(new Author { Name = "Mahesh Chand", Book = "Mastering C#", Price = 54.95 });  
authors.Add(new Author { Name = "Mahesh Chand", Book = "Jumpstart Blockchain", Price = 44.95 });
Posted by: Guest on April-27-2020
21

how to add to a list c#

var list = new List<string>();
list.Add("Hello");
Posted by: Guest on December-17-2019

Code answers related to "c# how to add an object to a list"

C# Answers by Framework

Browse Popular Code Answers by Language