第一部分是語言使用的基礎,而這是使用語言的基本功,也是平常最不注意的,養成好的習慣,有利於後期水平提高。
這部分包括11個單元,分別如下:
Item 1: Always Use Properties Instead of Accessible Data Members
《Effective C#》Item 1:用屬性來訪問類的私人成員
http://blog.csdn.net/knight94/archive/2006/06/04/772886.aspx
Item 2: Prefer readonly to const
《Effective C#》Item 2:定義常量的兩種方法
http://blog.csdn.net/knight94/archive/2006/06/06/776548.aspx
Item 3: Prefer the is or as Operators to Casts
《Effective C#》Item 3:使用as和is操作符來做類型轉換
http://blog.csdn.net/knight94/archive/2006/06/12/791850.aspx
Item 4: Use Conditional Attributes Instead of #if
《Effective C#》Item 4:使用Conditional屬性來代替IF/ENDIF程式塊
http://blog.csdn.net/knight94/archive/2006/06/18/809479.aspx
Item 5: Always Provide ToString()
《Effective C#》Item 5:提供一個有意義的ToString函數
http://blog.csdn.net/knight94/archive/2006/06/18/810467.aspx
Item 6: Distinguish Between Value Types and Reference Types
《Effective C#》Item 6:區分實值型別和參考型別
http://blog.csdn.net/knight94/archive/2006/07/01/861383.aspx
Item 7: Prefer Immutable Atomic Value Types
《Effective C#》Item 7:推薦使用不可改變的原子實值型別
http://blog.csdn.net/knight94/archive/2006/07/27/985552.aspx
Item 8: Ensure That 0 Is a Valid State for Value Types
《Effective C#》Item 8:確保“0”在實值型別中是有效
http://blog.csdn.net/knight94/archive/2006/08/09/1040766.aspx
Item 9: Understand the Relationships Among ReferenceEquals(), static Equals(),
instance Equals(), and operator==
《Effective C#》Item 9:區別和認識四個判等函數
http://blog.csdn.net/knight94/archive/2006/08/11/1050901.aspx
Item 10: Understand the Pitfalls of GetHashCode()
《Effective C#》Item 10:小心GetHashCode函數所存在的陷阱
http://blog.csdn.net/knight94/archive/2006/08/20/1100194.aspx
Item 11: Prefer foreach Loops
《Effective C#》Item 11:提倡使用foreach語句來進行迴圈操作
http://blog.csdn.net/knight94/archive/2006/08/20/1100236.aspx
文章中提到一些好的方法,以及各個方法的細微之處,都是不錯的。不過建議大家如果有機會的話,還是買本原書來看。
如果文章有什麼不當之處,或者對文章有什麼好的建議的話,可以來信告訴我,我會在下一部分編寫過程中加以注意。至於下部分的進度,為了保證文章的品質,所以我會把一周的文章數控制在三篇以內。