/// /// ²âÊÔ /// /// public class BaseManager where T : new() { private static T instance; public static T GetInstance() { if (instance == null) { instance = new T(); } return instance; } }