Search Results

3
votes
5answers
600 views

Loops and Garbage Collection

I am working on a web application and I have run into the following situation. Dim a as Object Dim i as Integer = 0 Try For i=1 to 5 a = new Object() 'Do stu …