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



_______________________________________________
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list

Reply via email to