<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>云飞扬的ITblog &#187; 新特性</title>
	<atom:link href="http://www.ajaxcn.net/archives/tag/%e6%96%b0%e7%89%b9%e6%80%a7/feed" rel="self" type="application/rss+xml" />
	<link>http://www.ajaxcn.net</link>
	<description>关注 flex ajax asp.net等</description>
	<lastBuildDate>Sat, 28 Jan 2012 13:00:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.5</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>JQuery1.4中15个新特性你必须知道中文版</title>
		<link>http://www.ajaxcn.net/archives/1225</link>
		<comments>http://www.ajaxcn.net/archives/1225#comments</comments>
		<pubDate>Sun, 03 Oct 2010 05:59:11 +0000</pubDate>
		<dc:creator>云飞扬</dc:creator>
				<category><![CDATA[jquery]]></category>
		<category><![CDATA[新特性]]></category>

		<guid isPermaLink="false">http://www.ajaxcn.net/?p=1225</guid>
		<description><![CDATA[本文非原创
1. 传参给 jQuery(…)
之前，jQuery可以通过 attr 方法设置元素的属性，既可传属性的名和值，也可以是包含几组特定 属性名值对 的 对象。在 jQuery 1.4 中，你可以把一个参数对象作为第二个参数传给 jQuery 函数本身，同时创建HTML元素。 ]]></description>
		<wfw:commentRss>http://www.ajaxcn.net/archives/1225/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>c#3.0新特性使用lambda表达式创建表达式树</title>
		<link>http://www.ajaxcn.net/archives/186</link>
		<comments>http://www.ajaxcn.net/archives/186#comments</comments>
		<pubDate>Tue, 18 Aug 2009 13:43:34 +0000</pubDate>
		<dc:creator>云飞扬</dc:creator>
				<category><![CDATA[c#]]></category>
		<category><![CDATA[新特性]]></category>

		<guid isPermaLink="false">http://www.ajaxcn.net/?p=186</guid>
		<description><![CDATA[c#3.0新特性使用lambda表达式创建表达式树

题外话：这空间访问速度真慢,在我发布文章的时候，感觉花费九牛二虎之力。几篇已经准备好的文章花费1个多小时发布。

Using Lambda Expressions to Create Expression Trees 使用lambda表达式创建表达式树

1.使用前引入类
]]></description>
		<wfw:commentRss>http://www.ajaxcn.net/archives/186/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>c# 3.0新特性之使用Lambda表达式</title>
		<link>http://www.ajaxcn.net/archives/183</link>
		<comments>http://www.ajaxcn.net/archives/183#comments</comments>
		<pubDate>Tue, 18 Aug 2009 13:31:32 +0000</pubDate>
		<dc:creator>云飞扬</dc:creator>
				<category><![CDATA[c#]]></category>
		<category><![CDATA[新特性]]></category>

		<guid isPermaLink="false">http://www.ajaxcn.net/?p=183</guid>
		<description><![CDATA[Working with Lambda Expressions 使用Lambda表达式
Lambda表达式有什么作用，它的使用方法是？
作用主要可以在匿名的方法的基础上，进一步简化代码，也可以隐藏delegate关键字
比如在2.0中代码如下：

var innerPoints = points.FindAll(delegate(Point p) { return (p.X > 0 &#038;& p.Y > 0); });

那么在C# 3.0 可以写为

var innerPoints = points.FindAll( p => p.X > 0 &#038;& p.Y > 0);

Lambda表达式的基本编写方法如以下代码所示：

(参数列表)=>{表达式};

表达式即事件处理方法体代码，参
]]></description>
		<wfw:commentRss>http://www.ajaxcn.net/archives/183/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>c# 3.0新特性之使用扩展方法</title>
		<link>http://www.ajaxcn.net/archives/180</link>
		<comments>http://www.ajaxcn.net/archives/180#comments</comments>
		<pubDate>Tue, 18 Aug 2009 13:16:59 +0000</pubDate>
		<dc:creator>云飞扬</dc:creator>
				<category><![CDATA[c#]]></category>
		<category><![CDATA[新特性]]></category>

		<guid isPermaLink="false">http://www.ajaxcn.net/?p=180</guid>
		<description><![CDATA[Extension Methods 使用扩展方法
使用的时候需要注意的地方
1.扩展方法所属的类必须为静态非泛型类，扩展方法也是静态方法
2.第一个参数为被扩展的类型实例，并且必须用this进行修饰
3.第二个参数开始对对应被扩展类型实例所传递的参数列表，即扩展类型实例]]></description>
		<wfw:commentRss>http://www.ajaxcn.net/archives/180/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C# 3.0 新特性之隐含类型局部变量</title>
		<link>http://www.ajaxcn.net/archives/178</link>
		<comments>http://www.ajaxcn.net/archives/178#comments</comments>
		<pubDate>Tue, 18 Aug 2009 04:47:30 +0000</pubDate>
		<dc:creator>云飞扬</dc:creator>
				<category><![CDATA[c#]]></category>
		<category><![CDATA[新特性]]></category>

		<guid isPermaLink="false">http://www.ajaxcn.net/?p=178</guid>
		<description><![CDATA[C# 3.0 新特性隐含类型局部变量(Local Variable Type Inference)

一般情况下我们可以定义如下变量
    int i = 43;

    string s = "...This is only a test...";

    int[] numbers = new int[] { 4, 9, 16};

    SortedDictionary<string, List<DateTime>> complex =
        new SortedDictionary<string, List<DateTime>>();
==================================================================
var 可变变量的定义则如下定义：
            var i = 43;

            var s = "...This is only a test...";

            var numbers = new[] { 4, 9, 16 };

            var complex = new SortedDictionary<string, List<DateTime>>();
这些变量在调试的时候可以把鼠标放到var上，则var则显示定义的类型

]]></description>
		<wfw:commentRss>http://www.ajaxcn.net/archives/178/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C# 3.0新特性之对象和集合初始化</title>
		<link>http://www.ajaxcn.net/archives/175</link>
		<comments>http://www.ajaxcn.net/archives/175#comments</comments>
		<pubDate>Tue, 18 Aug 2009 04:18:42 +0000</pubDate>
		<dc:creator>云飞扬</dc:creator>
				<category><![CDATA[c#]]></category>
		<category><![CDATA[新特性]]></category>

		<guid isPermaLink="false">http://www.ajaxcn.net/?p=175</guid>
		<description><![CDATA[在C# 3.0里，对象和集合初始化更容易了
继续新特性之自动属性，现在看看如何对象和集合初始化
用上篇的Point类
public class Point
{
    public int X { get; set; }
    public int Y { get; set; }
}

对象类初始化可以这样定义了

Point p = new Point { X = 3, Y = 99 };

==========================
]]></description>
		<wfw:commentRss>http://www.ajaxcn.net/archives/175/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C# 3.0新特性之自动属性(Auto-Implemented Properties)</title>
		<link>http://www.ajaxcn.net/archives/171</link>
		<comments>http://www.ajaxcn.net/archives/171#comments</comments>
		<pubDate>Tue, 18 Aug 2009 03:15:42 +0000</pubDate>
		<dc:creator>云飞扬</dc:creator>
				<category><![CDATA[c#]]></category>
		<category><![CDATA[新特性]]></category>

		<guid isPermaLink="false">http://www.ajaxcn.net/?p=171</guid>
		<description><![CDATA[万丈高楼平地起，基础是重中之重。
所有我一定要搞点基础的东西，虽然已经是搞了几年程序了，有些基础知识也懂，但是没有系统的掌握。
而且发现现在弄的B/S系统里很多技术真的很落后了，也许我现在学的新技术有些用不上，并不代表不要学，
所有现在开始更加要全部重新学习或者复习一些基础东西。

1.C# 3.0新特性之自动属性(Auto-Implemented Properties)

类的定义
]]></description>
		<wfw:commentRss>http://www.ajaxcn.net/archives/171/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

