Madam Zu Zu
Madam Zu Zu

Reputation: 6605

vb.net - dispose of all variables?

how can i make sure i dispose of ALL my variables and sessions when i close the application?

i already have session.abandon(), but does it still keep all the other objects stored somewhere in the memory?

i've noticed that my w3wp.exe process keeps going up as i am testing my application. what is a good way to keep mem usage under control?

Upvotes: 0

Views: 1762

Answers (1)

John Saunders
John Saunders

Reputation: 161773

When the process exits, all the memory it was using goes away. You don't have to worry about it.

Upvotes: 1

Related Questions