using System.Collections.Generic;
public static void Main(string[] args)
public string Bookname = "a";
public List<Page> Pages = new List<Page>();
public void AddPage(string pageTitle)
Pages.Add(new Page(this, pageTitle));
public Page(Book b, string pagetitle)
Console.WriteLine(pagetitle);
Console.WriteLine("I'm from book '{0}'.", book.Bookname);