Answers for "how to specify the decimal places in c#"

C#
4

set decimal point c#

decimalVar.ToString ("#.##"); // returns "" when decimalVar == 0

or

decimalVar.ToString ("0.##"); // returns "0"  when decimalVar == 0
Posted by: Guest on May-14-2020
5

c# display float with 2 decimal places

myFloatVariable.ToString("0.00"); //2dp Number

myFloatVariable.ToString("n2"); // 2dp Number

myFloatVariable.ToString("c2"); // 2dp currency
Posted by: Guest on April-16-2020

Code answers related to "how to specify the decimal places in c#"

C# Answers by Framework

Browse Popular Code Answers by Language