I have a singleton that uses the \"static readonly T Instance = new T();\" pattern. However, I ran into a case where T is disposable, and actually needs to be disposed for u
Singletons should not be Disposable. Period. If someone calls Dispose prematurely, your application is screwed until it restarts.