摘要: /// <summary> /// 获取当前实例 /// </summary> public static ClassTest Instance { get { if (_instance == null) { lock (typeof(ClassTest)) { //创建实例 if (_instance == null){ _instance =newClassTest();} } } retur... 阅读全文
posted @ 2011-10-14 09:55 老皆知 阅读(159) 评论(0) 推荐(0) 编辑