Is it safe to use the using statement on a (potentially) null object? Consider the following example:
using
class Test { IDisposable GetObject
You will not get null reference exception as per my experience. It will be simply ignored.