https://bugzilla.novell.com/show_bug.cgi?id=371567

User [EMAIL PROTECTED] added comment
https://bugzilla.novell.com/show_bug.cgi?id=371567#c2


Gert Driesen <[EMAIL PROTECTED]> changed:

           What    |Removed                                         |Added
----------------------------------------------------------------------------
                 CC|                                                |[EMAIL 
PROTECTED]
             Status|RESOLVED                                        |REOPENED
         Resolution|FIXED                                           |




--- Comment #2 from Gert Driesen <[EMAIL PROTECTED]>  2008-05-12 14:31:03 MST 
---
Dick, this still does not appear to be fixed:

using System;
using System.Diagnostics;
using System.Globalization;

class Program
{
        static void Main ()
        {
                Process p = new Process ();
                p.StartInfo.FileName = "echo";
                p.StartInfo.Arguments = "http://www.google.be#whatever";;
                p.StartInfo.RedirectStandardOutput = true;
                p.StartInfo.UseShellExecute = false;
                p.Start ();
                p.WaitForExit ();

                string result = p.StandardOutput.ReadToEnd ();
                Console.WriteLine (result);
        }
}


-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
_______________________________________________
mono-bugs maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-bugs

Reply via email to