How we free the memory in C#.NET.
Answers were Sorted based on User's Feedback
Answer / prashanth s
Actually the freeing of the memory is done by the CLR
automatically by calling the garbage collection routine.
But the declared objects by the user can be deallocated
manually by using dispose function in the class by
implementing IDisposable interface in the object class.
Otherwise it can also be done by implementing a destructor
in the class, as the destructor defined will help
deallocating the object allocation after the usage of the
object gets over, i.e the object is not used anywhere else
in the program.
Is This Answer Correct ? | 15 Yes | 0 No |
Answer / mayur teli
We can also use Using statement
when we use it, there is no need to explicitly dispose the object. Using statement take care of it.
Is This Answer Correct ? | 3 Yes | 1 No |
How do you prevent a class from being inherited in c#?
Which of the following API is used to hide a window?
About delegates and events?
Why can?t you specify the accessibility modifier for methods inside the interface?
How many aware interfaces are there?
What are synchronous and asynchronous operations?
What to implement on my class Finalize or IDisposable
In .NET which is the smallest unit of execution?
What is iformatprovider in c#?
What is static and use of it?
What are primitive data types in c#?
can we declare a variable by name "this" in a class? Please explain?