Check which ports are open to the outside world. Helps make sure that your firewall rules are working as intended.
One of a set of tools we are providing to everyone as a way of saying thank you for being a part of the community.
// add an event handler
b.ButtonClick += new ButtonEventHandler(onButto
// remove an event handler
b.ButtonClick -= new ButtonEventHandler(onButto
This would keep the event from calling your disposed object.
At any rate, there isn't a way to kill an object straight away in C#; the closest you can get is to call Dispose() on the object, and then call System.GC.Collect() force the garbage collection routines to kick in but even then there isn't really any guarantee that your object will be destroyed because of the generational aspect of the garbage collector.
Eric