public class FloatToString { private string Str = string.Empty; private int CountOfDecimalPlaces; private char[] Chars =new char[] { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9' }; public FloatToString(int countOfDecimalPlaces) { this.CountOfDecimalPlaces = countOfDec...