摘要: using System; using System.Configuration; using System.Data; using System.Data.SqlClient; using System.Collections; /**//// /// The SqlHelper class is intended to encapsulate high performanc... 阅读全文
posted @ 2008-07-03 14:41 zijinguang 阅读(168) 评论(0) 推荐(0) 编辑
摘要: readonly 关键字与 const 关键字不同。 const 字段只能在该字段的声明中初始化。readonly 字段可以在声明或构造函数中初始化。 因此,根据所使用的构造函数,readonly 字段可能具有不同的值。 另外,const 字段为编译时常数,而 readonly 字段可用于运行时常数 阅读全文
posted @ 2008-07-03 09:16 zijinguang 阅读(159) 评论(0) 推荐(0) 编辑