Effective C# 摘录(1) - C# Language Elements

1:用属性来访问类的私有成员    Always use properties instead of accessible data members.html 2:为常量优先选择readonly而不是const。    Prefer readonly to const.    const常量仅限于几个基本类型,编译时绑定;readonly常量在运行时绑定。数组 3:优先选择is或者as操做符而不是
相关文章
相关标签/搜索