6
Reply

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

Atulya Panda

Atulya Panda

Nov 26, 2012
8.4k
1

    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.

    Sandeep Kumar
    September 28, 2015
    1

    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.

    Tanuj Khurana
    September 18, 2015
    1

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

    shekhar kumar
    April 01, 2013
    1

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

    shekhar tyagi
    July 08, 2013
    0

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

    Shankar M
    February 18, 2013
    0

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

    Neena M
    December 10, 2012
    0