CodeProject

A Leap In Embedded Programming; .Net Micro Framework

Introduction We .net programmers are definitely proud that .net is everywhere. Today .net is everywhere from controlling satellites to controlling bicycles. You heard it right, my fellow employee Colin Miller has already developed an application using .Net micro framework which reads every data from a bicycle through cloud. So whats interesting? Right from the device […]

Ping remote machines using .net

If you are looking for to ping a remote machine and you want to record the state along with status and return time, below example can help you.   private void Ping_Click(object sender, EventArgs e) { List domains = new List(); domains.Add(“www.bing.com”); domains.Add(“www.yahoo.com”); domains.Add(“jebarson.info”); foreach (string domain in domains) { Ping pinger = new Ping(); […]

Scroll to top