Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

c# format string with 2 decimals

// max. two decimal places
String.Format("{0:0.##}", 123.4567);      // "123.46"
String.Format("{0:0.##}", 123.4);         // "123.4"
String.Format("{0:0.##}", 123.0);         // "123"

Source by www.csharp-examples.net #
 
PREVIOUS NEXT
Tagged: #format #string #decimals
ADD COMMENT
Topic
Name
3+4 =