1
Reply

Explain the garbage collection in .NET ?

Subhashkumar Yadav

Subhashkumar Yadav

Dec 30, 2016
754
0

    Garbage collection is a CLR feature which automatically manages memory. CLR automatically releases objects when they are no longer used and referenced. Following methods are used for garbage collection –GC.Collect() Dispose() Finalize()

    Subhashkumar Yadav
    December 30, 2016
    4