A
Ahjay Muscha
What's the best way to convert from a double to a string?
for example, at the moment I have to do this:
string s = new Double(a + b / c).ToString();
Is there a better way for me to do this so I don't have to create a double
object all the time?
thanks,
/m
for example, at the moment I have to do this:
string s = new Double(a + b / c).ToString();
Is there a better way for me to do this so I don't have to create a double
object all the time?
thanks,
/m