There is a simple but important difference between them…
ToString() raise exception when the object is null
So in the case of object.ToString(), if object is null, it raise NullReferenceException.
Convert.ToString() return string.Empty in case of null object
(string) cast assign the object in case of null
So in case of
MyObject o = (string)NullObject;
But when you use o to access any property, it will raise NullReferenceException.
http://maniish.wordpress.com/2007/10/08/difference-between-tostring-vs-converttostring-vs-string-cast/
Tostring()nortostring()exists. C# is case-sensitive; are you referring toToString, or do you have some other user-defined functions? Show us your source code that causes the error, and show us the error. – Keith Thompson Sep 3 '11 at 5:15DbNull(which is notnull); and it may be possible that you may need to useIsNull(col)otherwise the index ([col]) can fail IIRC. In any case, please include relevant information: "receive an error" is as useful as "doesn't work". – user166390 Sep 3 '11 at 6:02