抹茶布丁

导航

2011年2月23日 #

c#3.0新语言特性

摘要: C# 3.0新语言特性和改进包括:自动属性(Auto-Implemented Properties) 隐含类型局部变量(Local Variable Type Inference) 匿名类型(Anonymous Types) 对象与集合初始化器(Object and Collection Initializers) 扩展方法(Extension Methods) Lambda表达式和Lambda表达式树 (Lambda Expression and Lambda Expression Trees) http://kb.cnblogs.com/page/42594/ 阅读全文

posted @ 2011-02-23 13:36 抹茶布丁 阅读(104) 评论(0) 推荐(0) 编辑

LINQ 查询介绍

摘要: 查询操作的三个部分所有 LINQ 查询操作都由以下三个不同的操作组成: 获取数据源。 创建查询。 执行查询。下面的示例演示如何用源代码表示查询操作的三个部分。class IntroToLINQ{ static void Main(){// The Three Parts of a LINQ Query:// 1. Data source.int[] numbers = new int[7] { 0, 1, 2, 3, 4, 5, 6 };// 2. Query creation.// numQuery is an IEnumerable<int>var numQuery =from 阅读全文

posted @ 2011-02-23 13:33 抹茶布丁 阅读(188) 评论(0) 推荐(0) 编辑