.NET run time relies on the object reference counts to manage memory

A) True
B) False
Explanation: .Net run time relies on Garbage Collection to manage memory

Showing Answers 1 - 5 of 5 Answers

samiksc

  • Jan 10th, 2006
 

(B) False is the correct choice. .net runtime relies on reference tree and generations algorithm and does not rely on reference counts.

  Was this answer useful?  Yes

One of the primary design goals of .NET is to overcome problems associated reference counting and orphaned objects etc that were prevalent in the COM world. .NET framework instead uses reference tracking for garbage collector to reclaim memory from unused objects.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions