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();
}
Bineesh ViswanathPosted Dec 26, 2017, 7:19 AM
Altaf AnsariPosted Dec 26, 2017, 6:06 AM
A good example of this is if you've just closed a large form. You know that all the UI controls can now be garbage collected, and a very short pause as the form is closed probably won't be noticeable to the user.
Bhautik MoradiyaPosted Dec 26, 2017, 6:05 AM