In C#, is it possible to perform ToString on a float and get the value without using exponentials?
For example, consider the following:
float dummy;
string dum = string.Format("{0:f99}",dummy).TrimEnd('0'); if (dum.EndsWith(",")) dum = dum.Remove(dum.Length - 1);