[Mono-bugs] [Bug 66528][Nor] Changed - ToString(formatString) fails
with double value of zero
bugzilla-daemon at bugzilla.ximian.com
bugzilla-daemon at bugzilla.ximian.com
Mon May 23 13:23:23 EDT 2005
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 bmaurer at users.sf.net.
http://bugzilla.ximian.com/show_bug.cgi?id=66528
--- shadow/66528 2005-05-17 02:47:29.000000000 -0400
+++ shadow/66528.tmp.30343 2005-05-23 13:23:23.000000000 -0400
@@ -1,13 +1,13 @@
Bug#: 66528
Product: Mono: Class Libraries
Version: unspecified
OS: All
OS Details: FC2
-Status: NEW
-Resolution:
+Status: RESOLVED
+Resolution: FIXED
Severity: Unknown
Priority: Normal
Component: CORLIB
AssignedTo: mono-bugs at ximian.com
ReportedBy: david at quintana.org
QAContact: mono-bugs at ximian.com
@@ -53,6 +53,22 @@
"00.00E00"
How often does this happen?
Always
Additional Information:
+
+------- Additional Comments From bmaurer at users.sf.net 2005-05-23 13:23 -------
+[benm at omega benm]$ cat x.cs
+using System;
+
+class X {
+ static void Main ()
+ {
+ double y = 0.0;
+ Console.WriteLine(y.ToString("00.00E00"));
+ }
+}
+[benm at omega benm]$ mcs x.cs
+[benm at omega benm]$ mono x.exe
+0.00E00
+
More information about the mono-bugs
mailing list