Converts a float to its string representation.
float
string
Syntax
string float.ToString()
Returns
The decimal string representation of the float.
Sample
floatSample.rfsvar c = "21.876"; ... var w = float.Parse(c); var x = w.ToString(); trace w, " is now once again ", c;
floatSample.rfs
var c = "21.876"; ... var w = float.Parse(c); var x = w.ToString(); trace w, " is now once again ", c;
w.ToString()
21.876, " is now once again ", "21.876"
Figure 350.
Related links
Search Highlighter (On/Off)