Quale:
using (var myObject = new MyClass())
{
try
{
// something here...
}
catch(Exception ex)
{
// Handle exception
}
}
O
try
{
using (var myObject = new MyClass())
{
// something here...
}
}
catch(Exception ex)
{
// Handle exception
}
}
della using
dichiarazione può generare un'eccezione come ricordato qui .
finally
metodo dispose sia chiamato implicito .