In which situation can a using block be used and what are the benefits?
using (some code statement here)
{
//code here
}
In which situation can a using block be used and what are the benefits?
using (some code statement here)
{
//code here
}
Copyright © 2021 Jogjafile Inc.
Using blocks are only useful when utilizing objects that implement IDisposable. (Try saying that 5 times fast). It ensures that the dispose methods of those objects are called after they fall out of scope.