Format float point value as number

image_pdfimage_print
   
 

using System;
class Sample 
{

    public static void Main() 
    {
       Console.WriteLine("(N) Number: . . . . . . . . . {0:N}
" + -123, -123.45f); 
    }
}

   
     


This entry was posted in Data Types. Bookmark the permalink.