[Mono-list] bug report

Gonzalo Paniagua Javier gonzalo@ximian.com
01 Aug 2002 12:19:01 +0200


El jue, 01-08-2002 a las 06:04, 华宏亮 escribió:
> using System;
> 
> class FormatOut
> {
> 	public static int Main()
> 	{
> 		Console.WriteLine("Left Align 10:{0,  -10}", 99);
> 		Console.WriteLine("Right Align 10:{0,  10}", 99);
> 		return 0;
> 	}
> } 
>  

I tried this sample (well, just changed the literal to say "Number:")
and this is what i get:

~ $ ./kevin.exe
Number:   -199
Number:   199
~ $ mono ./kevin.exe
Number:   -199
Number:   199

I'm using current CVS. It should also work with some previous versions
(i believe that since 0.12).

Cheers.

- Gonzalo