示例#1
0
文件: delegates.cs 项目: p039/c-sharp
 internal void AddBookToTotal(Book book)
 {
     countBooks =+ 1;
     priceBooks =+ book.Price;
 }
示例#2
0
文件: delegates.cs 项目: p039/c-sharp
 static void PrintTitle(Book b)
 {
     Console.WriteLine("   {0}", b.Title);
 }