What is the use of USING in c sharp
| As we all knows that one of beauty of C# is that it will releases memory automatically and in .NET CLR do this work calling garbage collector realse object that are not needed. USING is also play some role in releasing memory its programmer to specify which object should release that using resources.When object is provided to Using statement it must provided a iDisposable interface.This interface contains Dispose method. | |
