摘要: View Code using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication3{ class Program { static void Main(string[] args) { BookStore bs = new BookStore(); bs.AfterAddedBook += (Object b) => { Book bb = (Book)b; Console.WriteLine(bb.name + "@@ 阅读全文
posted @ 2011-05-21 17:41 Devin Mao 阅读(150) 评论(0) 推荐(0) 编辑