C# Dispose() -clarification
- by nettguy
When i call object.Dispose(); Will CLR immediately destroy the object from memory or mark the object for removal in it's next cycle?.
We are calling GC.SuppressFinalize() immediately after Dispose(),Does it mean ,"Don't collect the object again for dispose,because it is already submitted to displose".
Actually which generation is responsible for destruction ,i guess generation 2.