示例#1
0
 internal void AddBookToTotal(Book book)
 {
     countBooks += 1;
     priceBooks += book.Price;
 }
示例#2
0
 static void PrintTitle(Book b)
 {
     Console.WriteLine("    {0}", b.Title);
 }