在某些情况下,我应该(或不应该?)使用“ using”块:
using(SomeType t = new SomeType()){ ... }
当SomeType类实现时IDisposable。
SomeType
IDisposable