Possible Duplicate:
Difference between Convert.tostring() and .tostring()
Hi
Carrying on from this question http://stackoverflow.com/questions/3486810/the-difference-between-convert-and-parse
Here are two lines of code.
Convert.ToString(myObject);
myObject.ToString();
My question is what is the difference and which would be best to use?
Thank you in advance.