If I have something like this within a sub/function:
Dim a as new myclass
Does this leave a memory leak if I am constantly calling this function creating new instances of this class? Do I have to destroy it or something when I am done using it?