P
pmclinn
Newbie question:
If I build a dll, how do I create a dispose method for it? Is it as
simple as adding the following code?
Public Overloads Overrides Sub Dispose()
MyBase.Dispose()
components.Dispose()
End Sub
I have several classes that pass back delegates and they all seem to
work great but I cannot figure out how to dispose of my classes after I
substanciated them.
-Peter
If I build a dll, how do I create a dispose method for it? Is it as
simple as adding the following code?
Public Overloads Overrides Sub Dispose()
MyBase.Dispose()
components.Dispose()
End Sub
I have several classes that pass back delegates and they all seem to
work great but I cannot figure out how to dispose of my classes after I
substanciated them.
-Peter