Re: [Mono-devel-list] problems wih decimal on cygwin

2005-07-06 Thread Atsushi Eno
Then bugzilla is the way to go ;-) Atsushi Eno Konstantin Triger wrote: Hi Eno, I think not: In the reported bug mono divides exactly, while in .Net the result is rounded. I have a situation when the result is wrong (0/x != 0) and an exception is thrown. When I test it with mono 2.0 it works

Re: [Mono-devel-list] problems wih decimal on cygwin

2005-07-06 Thread Konstantin Triger
Hi Eno, I think not: In the reported bug mono divides exactly, while in .Net the result is rounded. I have a situation when the result is wrong (0/x != 0) and an exception is thrown. When I test it with mono 2.0 it works correctly. I also suppose that on linux the issue will disappear. Regar

Re: [Mono-devel-list] problems wih decimal on cygwin

2005-07-06 Thread Atsushi Eno
Hi Kosta, Maybe the same or similar bug as #71287? http://bugzilla.ximian.com/show_bug.cgi?id=71287 Atsushi Eno Konstantin Triger wrote: Hello, I run the following code on cygwin: decimal d1 = 0; decimal d = d1 / 1M; Console.WriteLine( d > 0 ); decimal d2 = 1; dec

[Mono-devel-list] problems wih decimal on cygwin

2005-07-05 Thread Konstantin Triger
Hello, I run the following code on cygwin: decimal d1 = 0; decimal d = d1 / 1M; Console.WriteLine( d > 0 ); decimal d2 = 1; decimal d3 = d2 + d; Console.WriteLine( d3 ); and the output it produces is: True Unhandled Exception: System.OverflowException: Overflow on