public static class Singleton<T> where T : new () { private static T instance = new T(); public static T Instance { get { return instance; } } }
0 comments:
Post a Comment