摘要: 1/**//// 2 /// 单件模式 3 /// 4 internal class Singleton 5 { 6 public static DataOracle instance = null; 7 public Singleton( ) 8 { 9 //10 // TODO:... 阅读全文
posted @ 2008-06-27 11:03 jinweida 阅读(219) 评论(0) 推荐(0) 编辑
摘要: 1/**//// 2 /// 读取注册表值 3 /// 4 /// 5 /// 6 public static string GetRegEditData(string strName) 7 { 8 try 9 {10 string... 阅读全文
posted @ 2008-06-27 09:51 jinweida 阅读(1235) 评论(0) 推荐(0) 编辑