Interview Question
Qus: Why we should use “Using” in c# ?
It will automatically take the dispose of object for unmanaged application , when we are using ado.net object while implementing the methodology.
The using statement is used to set one or more resources and these resources are executed and the resource is released. So, using is used for managing and releasing all the resources automatically.
Answers (2)