[Mono-bugs] [Bug 51833][Min] New - Backspace character fails to work at the end of a string.

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Sun, 7 Dec 2003 16:25:06 -0500 (EST)


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 lastfuture@lastfuture.de.

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

--- shadow/51833	2003-12-07 16:25:06.000000000 -0500
+++ shadow/51833.tmp.20120	2003-12-07 16:25:06.000000000 -0500
@@ -0,0 +1,54 @@
+Bug#: 51833
+Product: Mono/Runtime
+Version: unspecified
+OS: 
+OS Details: Debian Sid
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Minor
+Component: misc
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: lastfuture@lastfuture.de               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: Backspace character fails to work at the end of a string.
+
+Description of Problem:
+
+\b as the escape symbol for backspace does not work in a Console.WriteLine
+when being positioned in the end of the string.
+
+Steps to reproduce the problem:
+
+Console.WriteLine("Backspace\b");
+Console.Write("Backspace\b");
+Console.WriteLine();
+Console.WriteLine("Backspace\b ");
+
+Actual Results:
+
+Backspace
+Backspac
+Backspac
+
+Expected Results:
+
+Backspac
+Backspac
+Backspac
+
+How often does this happen? 
+
+Always
+
+Additional Information:
+
+It is not just cosmetical but can get nasty if for example output of one
+program has to be parsed by another program. The error is not mono
+specific, but also reproducable in .NET, thus probably being a
+specification bug.
+Not sure if it should be fixed, that would lose .NET compatibility. I have
+not filed a bug report at microsoft.