Disposable singleton in C#

前端 未结 8 1836
Happy的楠姐
Happy的楠姐 2020-12-05 08:14

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

8条回答
  •  谎友^
    谎友^ (楼主)
    2020-12-05 09:13

    If the class implements IDisposable (as you imply it does) then just call x.Dispose()

提交回复
热议问题