[Mono-list] Mono bug with 'count++'

Adam Treat manyoso@yahoo.com
Fri, 12 Apr 2002 18:43:14 -0700


Hello,

First, the code ;-)

using System;

public class CountTest {

        public static void Main(string[] args)
        {
                int count;
                while (count != 10)
                        Console.WriteLine(count++);
        }
}

Second, the problem ;-)

run that with mint and you get the expected output.

run that with mono and output is well.... buggy :-)

Cheers,

Adam