摘要: /// /// 单例模板 /// /// public class Singleton where T : new() { protected static T _instance; private static readonly object _lockObj; static... 阅读全文
posted @ 2016-10-18 15:16 残庄居士 阅读(142) 评论(0) 推荐(0)