摘要: 类与结构的实例比较 类与结构的差别 如何选择结构还是类 一.类与结构的示例比较: 结构示例: public struct Person { string Name; int height; int weight public bool overWeight() { //implement something } } ... 阅读全文
posted @ 2008-07-02 23:19 netcorner 阅读(219) 评论(0) 推荐(0) 编辑
摘要: As structs are aggregates of any other data type you care to invent, learning how to work with them is important, and provides an excellent grounding in tackling wider problems. By Mike James... 阅读全文
posted @ 2008-07-02 23:08 netcorner 阅读(219) 评论(0) 推荐(0) 编辑
摘要: 数据层性能 技巧 1 — 返回多个结果集 技巧 2 — 分页的数据访问 技巧 3 — 连接池 技巧 4 — ASP.NET 缓存 API 技巧 5 — 每请求缓存 技巧 6 — 后台处理 技巧 7 — 页输出缓存和代理服务器 技巧 8 — 运行 IIS 6.0(只要用于内核缓存) 技巧 9 — 使用 Gzip 压缩 技巧 10 — 服务... 阅读全文
posted @ 2008-07-02 19:46 netcorner 阅读(160) 评论(0) 推荐(0) 编辑
摘要: 来自:http://www.cnblogs.com/yizhu2000/archive/2007/12/04/982142.html 一,不要过设计:never over design 这是一个常常被提及的话题,但是只要想想你的架构里有多少功能是根本没有用到,或者最后废弃的,就能明白其重要性了,初涉架构设计,往往倾向于设计大而化一的架构,希望设计出具有无比扩展性,能适应一切需求... 阅读全文
posted @ 2008-07-02 19:28 netcorner 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 重建日志文件,例: dbcc rebuild_log ('dbname','C:\Program Files\Microsoft SQL Server\MSSQL\Data\dbname_log.ldf‘) #数据库技术 阅读全文
posted @ 2008-07-02 17:00 netcorner 阅读(1895) 评论(0) 推荐(0) 编辑