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