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

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -