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
If the class implements IDisposable (as you imply it does) then just call x.Dispose()