I need to make a program that uses Asynchronous pings to cycle through a datagridview that has a list of server names or IP Addresses and ping them at the same time. and return the values to the correct row on the datagrid simultaneously. I have done this in VB .net, but now it needs to be done in C#. I am new to C# and have no clue how to get this done.
Any help would be great.
I have a Start ping command button, Stop Ping Button and a DataGridView that has 4 columns (Server Name, Reply Status, Response Time and Last time Out)
When stop ping is clicked all pinging must stop.
Does anyone have any code they could share to help get this done?
The main issue I have in the vb .net is that if a server is not responding then it freezes up the program until it timeouts and then continues.