Which type of variables are under the control of garbage
collector?

Answers were Sorted based on User's Feedback



Which type of variables are under the control of garbage collector?..

Answer / kiran kumar reddy

http://www.codeproject.com/dotnet/Primitive_Ref_ValueTypes.asp

Is This Answer Correct ?    1 Yes 0 No

Which type of variables are under the control of garbage collector?..

Answer / chiyan

reference will be stored in heap memory,heap is accessible
to garbage collector

Is This Answer Correct ?    1 Yes 0 No

Which type of variables are under the control of garbage collector?..

Answer / anand g

All types of objects and variables under the process of the
framework.

Is This Answer Correct ?    1 Yes 1 No

Which type of variables are under the control of garbage collector?..

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

Post New Answer

More C Sharp Interview Questions

What?s the top .NET class that everything is derived from?

3 Answers  


What is difference between first and firstordefault?

0 Answers  


Constructor to an arbitrary base constructor?

0 Answers  


Is null or empty in c#?

0 Answers  


Difference between type constructor and instance constructor? What is static constructor, when it will be fired? And what is its use?

0 Answers  






Why are there five tracing levels in System.Diagnostics.TraceSwitcher?

1 Answers  


What is the use of "default" and "Using" keyword?

3 Answers   TCS,


What is datagridview in c#?

0 Answers  


What does using do in c#?

0 Answers  


When should I use static in C#?

0 Answers   SwanSoft Technologies,


Explain attributes in c#?

0 Answers  


What is static variable in c#?

0 Answers  


Categories