[Mono-list] Is it a bug?

Mark Spiezio mspiezio@lazorpoint.com
Thu, 15 Aug 2002 16:45:31 -0400


> Hi!
> 
> It's not a bug in mono/mint, but in mcs.
> The code _is_ incorrect, I've tried to compile it with csc, 
> and it stops.
> 
> If I compile with mcs it works and mono, mint and even the 
> .NET Framework
> crash.

I agree, should this line

> Console.WriteLine( ergebnis.PrintComplex() );

be written as

ergebnis.PrintComplex();

Otherwise it looks like your trying to write a void to the Console.  mcs
should have picked that up.

-Mark