Sun Knight

Results 2 issues of Sun Knight

` /// /// 泛型单例 /// /// public abstract class BaseInstance where T : class,new() { private readonly static object lockObj = new object(); private static T instance = null; protected...