c# - Memory dump using Ping .net -
i'm trying ping server in windows forms application when program running, have memory dump on computer. very, strange.
in method have:
private void checkserver() { this.txresponse.text = ""; ipaddress ipadress = ipaddress.parse("anadress"); ping ping = new ping(); pingreply pingtoreply = ping.send(ipadress); if (pingtoreply.status == ipstatus.success) txresponse.text = pingtoreply.status.tostring(); }
i don't understand going on. i'm using visual studio 2012 .net framework 4.5 on windows 8.if necessary more information, please let me know.
verify parsing of ip address successful; otherwise check surrounding processing outside of checkserver method.
Comments
Post a Comment