1
vote
Passing an IDisposable object by reference causes an error?
Here's an option for your example (can't verify it against a compiler right now, but you'll get the idea):
private void DisposeObject<T>(ref T obj) where T : IDisposable
{
…
