3
Answers

Can I use GC.Collect() in c# events & functions?

Hi Sir,
 
I am currently on c# winform project.
 
I heard about the advantage of using the Garbage Collection in C#.
 
Some saying that It will affect the performance of application badly.
 
suppose I use GC.Collect(); in every event and functions, what will the result - speed up or not..?
 
I need your suggestion on this....
 
finally
{
GC.Collect();
}

Answers (3)