.Net 发展过程

来源:互联网 发布:淘宝有没有货到付款的 编辑:程序博客网 时间:2024/04/28 11:05

首先回顾一下.Net的一些回顾。

.Net Framework 1.0(VS2002) ----.net Framework 1.1(vs2003 c#) ---.net Framework2.0(vs2005)-----
.net Framework3.0(wpf,wcf,wf,xaml) -----.net Framework3.5( 与3.0区别加入c#3.0).
C#2.0 的扩充:
1.Generics (主要代表 list<T>)
2.Anoymous methods(delegate)
3.Iterators(IEnumerator ,IEnumerable)
4.Partial types( 类前面加partial)
   5.Nullable types (value type's null value)
C#3.0
   以linq为中心展开来。
    1.Implicitly Typed Local Variables. "var"
     2.Extension Methods(static this)
     3.Object initializers (初始化 后面加大括号)
    4.Anonymous type (直接 new 内容)
    5.Labmda Expressions(list.Findall(i=>((i%2)==0)))
     6.linq

原创粉丝点击