Answer Posted / stanly jose
Ofcourse, Garbage Collection is done for the memory
utilization (making use of memory space which is allocated
to the unused objects).
And this Garbage Collection is autometically done by the
CLR. Still we can also implicity for the CLR to collect the
unused memory allocated to unused objects. But that is not
at all necessary.
When a program is loaded into memory, it is organized into
three areas of memory, called segments: the text segment,
stack segment, and heap segment.
So the compiled code will reside in the text segment.
the variables like string, int ect..(value types) will
reside in stack segment.
the objects like class(reference type) will reside in the
heap segment.
So when a new object is created the Garbage Collector will
look unused objects and it will free them from the heap. so
that the new object can reuse the memory allocated to the
unused object.
| Is This Answer Correct ? | 8 Yes | 0 No |
Post New Answer View All Answers
Can we extend static class in c#?
what is scope of a protected internal member variable of a c# class
What is extension method in c sharp?
What do you mean by “finalize” and “finally” methods in c#?
State two different types of access modifiers.
Is string a primitive data type in c#?
What is static class in C#?
When do you generally use a class over a struct?
How does bubble sort work?
What is an interface class in c#?
Is c# and c same?
What is a jagged array?
What is the base class for array types?
What is desktop GUI application?
If you define a user defined data type by using the struct keyword, is it a value type or reference type?