In my program, I'm declaring like 4 arrays that list all the system processes and I have that in a timer with an inteval of 1 second
well it turned out that the ram usage of the app was increasing with each call of the timer, so I'm doing a garbage collection with each call of the timer :D
2 questions: does it really slow down the app to call the grabage collector this much? and should I even bother to call it, or does it get called automatically?
