c# float to string with 2 decimals code example
Example 1: c# display float with 2 decimal places
myFloatVariable.ToString("0.00"); //2dp Number
myFloatVariable.ToString("n2"); // 2dp Number
myFloatVariable.ToString("c2"); // 2dp currency
Example 2: C# type cast float to string
float number = 123;
String str_One = number.ToString();
By: Barry Cox