Hi guys,

I just found, that the following sample exposes a memory leak...or I am not understanding what is happening..

Code:
Public Class schrunzEvents
    Public Event schrunz()
End Class

'put this in a simple button eventhandler and watch your process memory in the taskmanager:
For i As Integer = 0 To 1000000
	Dim ee As New schrunzEvents
	ee = Nothing
Next
When watching the process in perfmon you find that garbage collection happens..

Any ideas are appreciated!

Sam