摘要: /// <summary> /// 单例模式 /// </summary> public sealed class Singleton { private static Singleton _Singleton = null; private Singleton() { Console.WriteL 阅读全文
posted @ 2017-04-10 23:22 Mr.石 阅读(269) 评论(0) 推荐(0) 编辑