Convert.ToString() and .ToString() method.

 

What is difference between Convert.ToString() and .ToString() method.



Convert.ToString() - Handles the null. 




.ToString() -  it doesn't handles null . it will throw a null reference exception error .


So as good coding practice using "convert" is always safe.