[Mono-bugs] [Bug 23738] Changed - hex numbers parsed wrong
bugzilla-daemon@rocky.ximian.com
bugzilla-daemon@rocky.ximian.com
23 Apr 2002 13:39:11 -0000
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 gonzalo@ximian.com.
http://bugzilla.ximian.com/show_bug.cgi?id=23738
--- shadow/23738 Tue Apr 23 09:32:03 2002
+++ shadow/23738.tmp.14090 Tue Apr 23 09:39:11 2002
@@ -1,13 +1,13 @@
Bug#: 23738
Product: Mono/Class Libraries
Version: unspecified
OS: other
OS Details:
-Status: ASSIGNED
-Resolution:
+Status: RESOLVED
+Resolution: FIXED
Severity: Unknown
Priority: Major
Component: CORLIB
AssignedTo: gonzalo@ximian.com
ReportedBy: lupus@ximian.com
QAContact: mono-bugs@ximian.com
@@ -27,6 +27,10 @@
System.Console.WriteLine ("{0:X}", value);
}
}
The result is 55555555. From a quick check, the parse routines use 'A' -
'F', but they need to do 10 + 'A' - 'F'.
+
+------- Additional Comments From gonzalo@ximian.com 2002-04-23 09:39 -------
+Exactly, it lacked a '+10' for the value of hexadecimal letters.
+