you have to parse those information yourself, tryusing System;
using System.IO;
using System.Diagnostics;class LaunchDirCommand {
    static void Main() {
        ProcessStartInfo psi = new ProcessStartInfo();
        psi.FileName = "ping.exe";
        psi.Arguments = "www.csdn.net";
        psi.RedirectStandardOutput = true;
        psi.UseShellExecute = false;
        Process p = Process.Start(psi);
        StreamReader stmrdr = p.StandardOutput;
        string s = stmrdr.ReadToEnd();
stmrdr.Close();
        Console.WriteLine(s);
    }
}
also see
http://www.csharphelp.com/archives/archive6.html