[Mono-bugs] [Bug 48973][Nor] New - Process.Start(file,args) converting backslashes into forwardslashes.

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Fri, 26 Sep 2003 21:42:58 -0400 (EDT)


Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

Changed by semidemigod@yahoo.com.

http://bugzilla.ximian.com/show_bug.cgi?id=48973

--- shadow/48973	2003-09-26 21:42:58.000000000 -0400
+++ shadow/48973.tmp.7079	2003-09-26 21:42:58.000000000 -0400
@@ -0,0 +1,37 @@
+Bug#: 48973
+Product: Mono/Class Libraries
+Version: unspecified
+OS: Red Hat 9.0
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Normal
+Component: System
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: semidemigod@yahoo.com               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: Process.Start(file,args) converting backslashes into forwardslashes.
+
+Process.Start(file,args) is converting any backslashes in args into 
+forwardslashes.
+
+using System.Diagnostics;
+class Test {
+        public static void Main() {
+                Process.Start("echo","this should be a backslash:\\");
+        }
+}
+
+
+Actual Results:
+this should be a backslash:/
+
+Expected Results:
+this should be a backslash:\
+
+How often does this happen? 
+each and every time attempted.