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

Can we make a class private in c#?

0 Answers  


Explain the ways to deploy an assembly?

0 Answers  


What is difference between Enum and Struct?

0 Answers   UGC Corporation,


Why ref is used in c#?

0 Answers  


What is void method?

0 Answers  






What are primitive data types in c#?

0 Answers  


What are the different types of delegation?

0 Answers  


Why attributes are used in c#?

0 Answers  


Are objects passed by reference in c#?

0 Answers  


What is method and function in c#?

0 Answers  


What is multicast delegate in c# ?

0 Answers  


What is delegates in c#?

0 Answers  


Categories