<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_Adrian's Tech Blog</title><subtitle type="text"/><id>http://feed.cnblogs.com/blog/u/21339/rss</id><updated>2009-02-13T02:53:50Z</updated><author><name>Adrian H.</name><uri>http://www.cnblogs.com/Dah/</uri></author><generator>feed.cnblogs.com</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/Dah/"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/21339/rss"/><entry><id>http://www.cnblogs.com/Dah/archive/2008/02/16/1070956.html</id><title type="text">LINQ表达式中关于显式范围变量的Bug</title><summary type="text">MSDN博客中的一篇文章提到了.NET 3.5 SP1会带来的处个修正，见以下代码：var floats = new ArrayList { 2.5f, 3.5f, 4.5f };var ints = from int i in floats select i;注意from后面声明的显式类型(int)。开发者会很自然地认为ints为[2,3,4]，但在现在版本.NET 3.5环境下得到的却是[2,...</summary><published>2008-02-16T15:07:00Z</published><updated>2008-02-16T15:07:00Z</updated><author><name>Adrian H.</name><uri>http://www.cnblogs.com/Dah/</uri></author><link rel="alternate" href="http://www.cnblogs.com/Dah/archive/2008/02/16/1070956.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/Dah/archive/2008/02/16/1070956.html"/><content type="text">MSDN博客中的一篇文章提到了.NET 3.5 SP1会带来的处个修正，见以下代码：var floats = new ArrayList { 2.5f, 3.5f, 4.5f };var ints = from int i in floats select i;注意from后面声明的显式类型(int)。开发者会很自然地认为ints为[2,3,4]，但在现在版本.NET 3.5环境下得到的却是[2,...</content></entry><entry><id>http://www.cnblogs.com/Dah/archive/2008/02/14/1069063.html</id><title type="text">jQuery太好使了</title><summary type="text">结合jQuery写了一个类似Web Portal的窗体控制页面（Demo），以前也用过Prototype等JavaScript library，发现jQuery不仅轻量，更是有自己的独特之处，足以满足自己的开发需求了~用jQuery我可以忽略很多basic的问题，比如浏览器兼容性。真是能让人体会到JavaScript的强大了。看这个Web Portal Demo的源码就可能发现我有滥用closur...</summary><published>2008-02-14T12:13:00Z</published><updated>2008-02-14T12:13:00Z</updated><author><name>Adrian H.</name><uri>http://www.cnblogs.com/Dah/</uri></author><link rel="alternate" href="http://www.cnblogs.com/Dah/archive/2008/02/14/1069063.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/Dah/archive/2008/02/14/1069063.html"/><content type="text">结合jQuery写了一个类似Web Portal的窗体控制页面（Demo），以前也用过Prototype等JavaScript library，发现jQuery不仅轻量，更是有自己的独特之处，足以满足自己的开发需求了~用jQuery我可以忽略很多basic的问题，比如浏览器兼容性。真是能让人体会到JavaScript的强大了。看这个Web Portal Demo的源码就可能发现我有滥用closur...</content></entry><entry><id>http://www.cnblogs.com/Dah/archive/2008/02/12/1067485.html</id><title type="text">一次性下载.NET源码和pdb，并在VS2005中进行调试</title><summary type="text">原文： Download All the .NET Reference Source Code at Once with Net Mass Downloader这篇文章介绍了如何使用Net Mass Downloader批量下载.NET源代码和pdb文件，如何配置VS2005以支持使用.NET源代码进行调试。End of post</summary><published>2008-02-12T13:59:00Z</published><updated>2008-02-12T13:59:00Z</updated><author><name>Adrian H.</name><uri>http://www.cnblogs.com/Dah/</uri></author><link rel="alternate" href="http://www.cnblogs.com/Dah/archive/2008/02/12/1067485.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/Dah/archive/2008/02/12/1067485.html"/><content type="text">原文： Download All the .NET Reference Source Code at Once with Net Mass Downloader这篇文章介绍了如何使用Net Mass Downloader批量下载.NET源代码和pdb文件，如何配置VS2005以支持使用.NET源代码进行调试。End of post</content></entry><entry><id>http://www.cnblogs.com/Dah/archive/2008/02/10/1066610.html</id><title type="text">Windows Server 2008: Server Core初体验</title><summary type="text">（又是初体验？）Server Core的理念挺好的，极度减少预装的特性，减小被攻击外表以提高稳定性和效率，可自定义服务器角色和特性。我的三年前买的本，从安装到登录用了30分钟（典型的Server Core安装时间为15分钟）。硬盘占用为1.5G。登录后只有一个命令行，传说中的"没有图形界面（GUI）"，其实只是没有Explorer.exe这个Shell而已，GDI是不会跑出这个版本的Windows...</summary><published>2008-02-10T08:05:00Z</published><updated>2008-02-10T08:05:00Z</updated><author><name>Adrian H.</name><uri>http://www.cnblogs.com/Dah/</uri></author><link rel="alternate" href="http://www.cnblogs.com/Dah/archive/2008/02/10/1066610.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/Dah/archive/2008/02/10/1066610.html"/><content type="text">（又是初体验？）Server Core的理念挺好的，极度减少预装的特性，减小被攻击外表以提高稳定性和效率，可自定义服务器角色和特性。我的三年前买的本，从安装到登录用了30分钟（典型的Server Core安装时间为15分钟）。硬盘占用为1.5G。登录后只有一个命令行，传说中的"没有图形界面（GUI）"，其实只是没有Explorer.exe这个Shell而已，GDI是不会跑出这个版本的Windows...</content></entry><entry><id>http://www.cnblogs.com/Dah/archive/2008/02/05/CSharp_Future_Focus_Dynamic_Lookup.html</id><title type="text">C# Future Focus: 动态查找（Dynamic Lookup）</title><summary type="text"/><published>2008-02-05T13:23:00Z</published><updated>2008-02-05T13:23:00Z</updated><author><name>Adrian H.</name><uri>http://www.cnblogs.com/Dah/</uri></author><link rel="alternate" href="http://www.cnblogs.com/Dah/archive/2008/02/05/CSharp_Future_Focus_Dynamic_Lookup.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/Dah/archive/2008/02/05/CSharp_Future_Focus_Dynamic_Lookup.html"/><content type="text"/></entry><entry><id>http://www.cnblogs.com/Dah/archive/2007/12/06/984954.html</id><title type="text">Volta : Democratizing the Cloud, 1st CTP Released!</title><summary type="text"/><published>2007-12-06T03:19:00Z</published><updated>2007-12-06T03:19:00Z</updated><author><name>Adrian H.</name><uri>http://www.cnblogs.com/Dah/</uri></author><link rel="alternate" href="http://www.cnblogs.com/Dah/archive/2007/12/06/984954.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/Dah/archive/2007/12/06/984954.html"/><content type="text"/></entry><entry><id>http://www.cnblogs.com/Dah/archive/2007/12/01/979337.html</id><title type="text">Parallel Extensions for .NET 3.5 CTP!</title><summary type="text"/><published>2007-12-01T05:27:00Z</published><updated>2007-12-01T05:27:00Z</updated><author><name>Adrian H.</name><uri>http://www.cnblogs.com/Dah/</uri></author><link rel="alternate" href="http://www.cnblogs.com/Dah/archive/2007/12/01/979337.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/Dah/archive/2007/12/01/979337.html"/><content type="text"/></entry><entry><id>http://www.cnblogs.com/Dah/archive/2007/11/30/978712.html</id><title type="text">Silverlight 2.0, .NET类库源码, ASP.NET MVC...</title><summary type="text"/><published>2007-11-30T10:53:00Z</published><updated>2007-11-30T10:53:00Z</updated><author><name>Adrian H.</name><uri>http://www.cnblogs.com/Dah/</uri></author><link rel="alternate" href="http://www.cnblogs.com/Dah/archive/2007/11/30/978712.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/Dah/archive/2007/11/30/978712.html"/><content type="text"/></entry><entry><id>http://www.cnblogs.com/Dah/archive/2007/11/28/976151.html</id><title type="text">VS 2008与老版本插件的兼容性问题导致Crash</title><summary type="text"/><published>2007-11-28T13:38:00Z</published><updated>2007-11-28T13:38:00Z</updated><author><name>Adrian H.</name><uri>http://www.cnblogs.com/Dah/</uri></author><link rel="alternate" href="http://www.cnblogs.com/Dah/archive/2007/11/28/976151.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/Dah/archive/2007/11/28/976151.html"/><content type="text"/></entry><entry><id>http://www.cnblogs.com/Dah/archive/2007/11/27/974313.html</id><title type="text">Silverlight Tools for VS 2008 RTM</title><summary type="text"/><published>2007-11-27T08:18:00Z</published><updated>2007-11-27T08:18:00Z</updated><author><name>Adrian H.</name><uri>http://www.cnblogs.com/Dah/</uri></author><link rel="alternate" href="http://www.cnblogs.com/Dah/archive/2007/11/27/974313.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/Dah/archive/2007/11/27/974313.html"/><content type="text"/></entry></feed>
