How garbage collection deals with circular references - DOT.NET

Explain how garbage collection deals with circular references.

Circular referencing issue happens when two objects refer to each other. Usually in a parent-child relationship, situations occur where a child interacts with the parent object and has a reference held to the parent object.

The .NET, the objects that are reachable from the root can be cleaned up easily. Thus, this can even be applied to circular reference and have the objects holding the resources cleaned up
What is break mode? What are the options to step through code? - DOT.NET
When changes are made to the code in an application, the way to be able to view how those changes have changed the way of execution is Break Mode....
Debug Vs Trace - DOT.NET
Debug statement can only be used in debug mode while trace statement can be used both in debug and released mode.....
Define trace class - DOT.NET
You can use trace messages to your project to monitor events in the released version of the application...
Post your comment