È sicuro usare l' using
istruzione su un (potenzialmente) oggetto null?
Considera il seguente esempio:
class Test {
IDisposable GetObject(string name) {
// returns null if not found
}
void DoSomething() {
using (IDisposable x = GetObject("invalid name")) {
if (x != null) {
// etc...
}
}
}
}
È garantito che Dispose
verrà chiamato solo se l'oggetto non è null e non otterrò un NullReferenceException
?