Hi, I work in C# 2005..
I use a separate thread to ping a computer IP and retrieve an approximate RoundtripTime.
Ping ping = new Ping();
PingReply reply = [U]ping.Send(myEP.Address);[/U]
This process takes some seconds and is ok. However my problem is that when I exit my program, it could take some seconds before actually exiting it.
Is there a way to radically end that process, maybe by generating some exception? But How? Any help please?