+1 vote
in Dot Net by

What is the use of using statement in C#?

1 Answer

0 votes
by

Using block is used to obtain a resource and use it and then automatically dispose of when the execution of block completed.

...