04 2010 档案
单件模式笔记
摘要:单件模式:私有构造函数+静态变量+静态方法 class Singleton { private static Singleton uniqueInstance; 静态实例 private Singleton() { } 私有构造函数 public static Singleton GetInstance() { if (uniqueInstance == null) { return new Si... 阅读全文
posted @ 2010-04-19 18:33 mint5919 阅读(125) 评论(0) 推荐(0)
Memo
摘要:IsNull(column name,replace value)e.g: IsNull(Age,0)If age is null then replace null to 0 阅读全文
posted @ 2010-04-09 18:00 mint5919 阅读(84) 评论(0) 推荐(0)
hello world
摘要:第一个博客。留下些生活,工作中的脚印。 阅读全文
posted @ 2010-04-06 18:56 mint5919 阅读(93) 评论(0) 推荐(0)