InterviewSolution
Saved Bookmarks
| 1. |
Why To Use "using" Statement In C#? |
|
Answer» The using BLOCK is used to OBTAIN a RESOURCE and USE it and then automatically dispose off when the execution of block completed. The using block is used to obtain a resource and use it and then automatically dispose off when the execution of block completed. |
|