摘要:
public static class Singleton<T> where T : class { private static T instance = default(T); public static T Instance { get { if (instance == null) { instance = typeof(T).InvokeMember(typeof(T).Na... 阅读全文
posted @ 2009-11-24 20:16
heyu52
阅读(146)
评论(0)
推荐(0)
2009年11月24日