Custom Numeric Formatting : Number format : Data Type C# Examples


C# Examples » Data Type » Number format »

 

Custom Numeric Formatting









    
using  System;

class  MainClass
{
        public  static  void  Main()
        {
                Console.WriteLine("{0:###.00;0;(###.00)}",  -456.55);
                Console.WriteLine("{0:###.00;0;(###.00)}",  0);
                Console.WriteLine("{0:###.00;0;(###.00)}",  456.55);
        }
}
    
   
  
   



Output

457
(.00)
456.55


HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo Data Type
» Number format