using System.Collections.Generic;
public static void Main()
List<string> Titles = new List<string>(new string[] { "title1", "title2", "title3" });
List<Book> Books = Titles.Select(s => new Book(s, string.Empty)).ToList();
Console.WriteLine(Books[0].Title);
Console.WriteLine(Books[0].Author == "");
public string Title { get { return title; } }
public string Author { get { return author; } }
public Book(string _title, string _author)