Please make a small sample application to dempnstrate the problem.
Best Regards,
Lars-Inge Tønnessen
Here is the sample program:
==========Foo.java===============
import java.text.*;
/**
*/
public class Foo
{
/** @attribute System.STAThread() */
public static void main(String[] args) throws Exception
{
NumberFormat format = NumberFormat.getNumberInstance();
System.out.println(format.parse("9E3"));
System.out.println(format.parse("9.1E3"));
}
}
=================================
The output in J# is 9 and 9.1. In Java, it's 9000 and 9100.
Xiao
Lars-Inge Tønnessen (VJ# MVP) - 19 Mar 2006 18:30 GMT
Looks like a bug to me.
It should be the same as Java.
Regards,
Lars-Inge Tønnessen