摘要: 自动属性 public string Name{get;set;} 匿名类型 new{} 对象初始化器 new{Name=""} 扩展方法 static class{static void Method(this Type type){;}} lambda表达式 (c = c = 26) 隐式类型局部变量 var IEnumbrable.Where books.Where(book = book.Name == "").Select(book = book.Price) 查询表达式 from book in books where book.Name == "" select book.Price 阅读全文
posted @ 2007-11-19 13:58 ccs 阅读(433) 评论(0) 推荐(0) 编辑