using System.Collections.Generic;
using System.Collections.ObjectModel;
public static void Main()
public string Name {get; set;}
public int Year {get;set;}
public Book(string Name, int Year)
public override string ToString()
return string.Format("{0} {1}", this.Name, this.Year);