﻿<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>博客园-东儿童</title><link>http://www.cnblogs.com/liuguanghuiyes/</link><description>爱拼才会赢</description><language>zh-cn</language><lastBuildDate>Thu, 21 Aug 2008 15:45:51 GMT</lastBuildDate><pubDate>Thu, 21 Aug 2008 15:45:51 GMT</pubDate><ttl>60</ttl><item><title>一款画流程图软件</title><link>http://www.cnblogs.com/liuguanghuiyes/archive/2008/08/15/1268903.html</link><dc:creator>哎！无悔</dc:creator><author>哎！无悔</author><pubDate>Fri, 15 Aug 2008 10:04:00 GMT</pubDate><guid>http://www.cnblogs.com/liuguanghuiyes/archive/2008/08/15/1268903.html</guid><wfw:comment>http://www.cnblogs.com/liuguanghuiyes/comments/1268903.html</wfw:comment><comments>http://www.cnblogs.com/liuguanghuiyes/archive/2008/08/15/1268903.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cnblogs.com/liuguanghuiyes/comments/commentRss/1268903.html</wfw:commentRss><trackback:ping>http://www.cnblogs.com/liuguanghuiyes/services/trackbacks/1268903.html</trackback:ping><description><![CDATA[Inspiration 8 IE Trial
<img src ="http://www.cnblogs.com/liuguanghuiyes/aggbug/1268903.html?type=1" width = "1" height = "1" /><br><br><a href="http://news.cnblogs.com/n/41822/" target="_blank">[新闻]第一财经周刊:当前互联网世界正处无秩序时代</a>]]></description></item><item><title>提高C#编程水平的50个要点</title><link>http://www.cnblogs.com/liuguanghuiyes/archive/2008/08/13/1267037.html</link><dc:creator>哎！无悔</dc:creator><author>哎！无悔</author><pubDate>Wed, 13 Aug 2008 08:12:00 GMT</pubDate><guid>http://www.cnblogs.com/liuguanghuiyes/archive/2008/08/13/1267037.html</guid><wfw:comment>http://www.cnblogs.com/liuguanghuiyes/comments/1267037.html</wfw:comment><comments>http://www.cnblogs.com/liuguanghuiyes/archive/2008/08/13/1267037.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cnblogs.com/liuguanghuiyes/comments/commentRss/1267037.html</wfw:commentRss><trackback:ping>http://www.cnblogs.com/liuguanghuiyes/services/trackbacks/1267037.html</trackback:ping><description><![CDATA[<p align="left">&nbsp;</p>
<p>提高C#编程水平的50个要点</p>
<p>1.总是用属性 (Property) 来代替可访问的数据成员</p>
<p>2.在&nbsp; readonly 和 const 之间，优先使用 readonly</p>
<p>3.在 as 和 强制类型转换之间，优先使用 as 操作符</p>
<p>4.使用条件属性 (Conditional Attributes) 来代替条件编译语句 #if</p>
<p>5.总是为自定义类重载 ToString 方法</p>
<p>6.区别值类型和引用类型</p>
<p>7.使用不可变的值类型(Immutable Atomic Value Types)</p>
<p>8.在值类型中，确保0是一个合法的数据</p>
<p>9.理解 ReferenceEquals, static Equals, instance Equals 和 比较运算符(==)之间的关系</p>
<p>10.理解 GetHashCode方法的缺陷</p>
<p>11.在编写循环时，优先使用 foreach.</p>
<p>12.在定义变量的时候就将其初始化</p>
<p>13.使用静态构造函数来初始化静态成员变量</p>
<p>14.用多个构造函数时，利用构造函数链</p>
<p>15.使用using和try/finally来处理资源的释放</p>
<p>16.尽量避免产生资源垃圾</p>
<p>17.尽量避免使用装箱(boxing)和拆箱(unboxing)</p>
<p>18.实现类的 Dispose 方法</p>
<p>19.在接口和继承(Inheritance)之间，优先使用接口(interface)</p>
<p>20.区分接口和重载(overrides)</p>
<p>21.用委托(delegate)来实现回调(callback)</p>
<p>22.用事件(event)来定义外部接口</p>
<p>23.避免返回类内部成员的引用</p>
<p>24.使用元数据来控制程序</p>
<p>25.优先使用可序列化(serilizable)类型</p>
<p>26.对需要排序的对象实现IComparable和IComparer接口</p>
<p>27.避免使用 ICloneable接口</p>
<p>28.避免使用类型转换操作符</p>
<p>29.只有当基类加入了与派生类中现有的函数名称相同的函数时，才需要使用 new 操作符</p>
<p>30.尽量使用 CLS-Compliant</p>
<p>31.尽量编写短少，简单的函数</p>
<p>32.尽量编写比较小的程序集(assembly)</p>
<p>33.限定类型的可见性(visibility)</p>
<p>34.编写大粒度的 web API</p>
<p>35.在使用事件时，优先继承基类事件，而不是重新创建一个事件</p>
<p>36.多使用 framework 的运行时调试 (DEBUG, TRACE, EVENTLOG等)</p>
<p>37.使用.net标准的配置机制</p>
<p>38.使用并且在类中支持.net的数据绑定功能 (Data Binding)</p>
<p>39.使用.net的验证机制 (Validation)</p>
<p>40.根据你的需求选择正确的集合类(Collection)</p>
<p>41.在自定义结构中使用 DataSet</p>
<p>42.利用属性(Attributes)</p>
<p>43.不要过度使用反射(Reflection)</p>
<p>44.创建完整的，应用程序特定的异常</p>
<p>45.尽可能多的考虑程序可能出现的异常，并作出处理</p>
<p>46.尽可能少的使用 Interop</p>
<p>47.尽量使用安全代码 (safe code)</p>
<p>48.多多学习、使用外部工具和资源</p>
<p>49.准备使用 C# 2.0</p>
<p>50.学习 ECMA 标准</p>
<img src ="http://www.cnblogs.com/liuguanghuiyes/aggbug/1267037.html?type=1" width = "1" height = "1" /><br><br><a href="http://news.cnblogs.com/n/41820/" target="_blank">[新闻]Visual Studio 2008 SDK 1.1 发布</a>]]></description></item><item><title>感人电影</title><link>http://www.cnblogs.com/liuguanghuiyes/archive/2008/06/06/1215384.html</link><dc:creator>哎！无悔</dc:creator><author>哎！无悔</author><pubDate>Fri, 06 Jun 2008 13:09:00 GMT</pubDate><guid>http://www.cnblogs.com/liuguanghuiyes/archive/2008/06/06/1215384.html</guid><wfw:comment>http://www.cnblogs.com/liuguanghuiyes/comments/1215384.html</wfw:comment><comments>http://www.cnblogs.com/liuguanghuiyes/archive/2008/06/06/1215384.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cnblogs.com/liuguanghuiyes/comments/commentRss/1215384.html</wfw:commentRss><trackback:ping>http://www.cnblogs.com/liuguanghuiyes/services/trackbacks/1215384.html</trackback:ping><description><![CDATA[<div class="intro">1.当幸福来敲门----其实幸福不会来敲门<br />
<br />
2.放牛班的春天----音乐引发向善之心<br />
<br />
3.美丽人生--------人性的光辉<br />
<br />
4.小鞋子----------予奔跑以一种爱和幸福<br />
<br />
5.跳出我天地------让我们倾听身体的本能<br />
<br />
6.百万宝贝--------毕生的平庸或者刹时的灿烂<br />
<br />
7.美丽心灵--------一个真实天才<br />
<br />
8.帝企鹅日记------最寒冷的冬天和最诚挚的感情<br />
<br />
9.一球成名1-2-----Goal!<br />
<br />
10.南极大冒险-----为狗而落泪 <br />
<br />
11.阳光小美女-----当令人匪夷所思的一群人恰巧凑成了一家<br />
<br />
12.变人(机器管家)----经历世间百味，体验人间真情<br />
<br />
13人鬼情未了------当我感到快乐时，我最害怕的就是失去它<br />
<br />
14.暖春-----------冬寒过后是春暖<br />
<br />
15.妈妈再爱我一次-----一部一生难忘的好电影<br />
<br />
16.人狗奇缘----重心唤起心灵的交流<br />
<br />
17.永霸天下<br />
<br />
18.法内情<br />
<br />
19.心灵捕手 </div>
<img src ="http://www.cnblogs.com/liuguanghuiyes/aggbug/1215384.html?type=1" width = "1" height = "1" /><br><br><a href="http://news.cnblogs.com/n/41821/" target="_blank">[新闻]死敌VMware变身微软认证计划新成员</a>]]></description></item></channel></rss>