Which type of variables are under the control of garbage
collector?
Answers were Sorted based on User's Feedback
Answer / kiran kumar reddy
http://www.codeproject.com/dotnet/Primitive_Ref_ValueTypes.asp
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / chiyan
reference will be stored in heap memory,heap is accessible
to garbage collector
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / anand g
All types of objects and variables under the process of the
framework.
Is This Answer Correct ? | 1 Yes | 1 No |
Answer / sujai cn
The objects which are in the heap , are under the control
of garbage collector.garbage collector is low weight
process which will run in background & clean the heap
(remove the objects from the heap which dont have the
reference , i.e, not reachable object) there are many
algorithms designed to monitor when & how long the garbage
collector has to run.
Is This Answer Correct ? | 0 Yes | 0 No |
Why can?t you specify the accessibility modifier for methods inside the interface?
3 Answers Mind Tree, Siebel Systems,
What is this keyword in C#?
Is c and c# the same?
What is a predicate in c#?
What is difference between comparable and comparator?
What is the difference between virtual method and abstract method?
What is a linked list c#?
What are the different types of delegation?
Difference between dispose and destructor?
What is the difference between abstract class and interface in c#?
Is int reference type c#?
What is the solution if you need to manipulate sets of items?