6
Reply

What is the use of the dispose method in C# ?

Atulya Panda

Atulya Panda

11y
8.5k
1
Reply

    Dispose method use to remove the object from memory ,which object has no references or those object are unreachable.dispose method get call by user.

    this is basically used for forcefully garbage collection. if i do not write dispose then its its job is for compiler to do this. but it do not give you surety that it freeze the memory immediately. if i want to force compiler to ask free memory immediately then we use dispose method. it internally calls finalize method.

    dispose method are used for forcefully garbage collection..!!!

    dispose method are used for forcefully garbage collection to relase Unmannaged code

    Freeing of resources.. Best Practice is to use the Keyword using which automatically frees the resources that are no longer needed.

    dispose is used to relase the resources when they are no longer required.