object obj = "Hello";
string str1 = (string)obj;
string str2 = obj.ToString();
What is the difference between (string)obj and obj.ToString()?
|
|
What is the difference between
|
||||
|
|
|
So in your specific case, both are equivalent. Note that |
||||||
|
|
|
At the most basic level:
|
||
|
|
|
|
(string)obj cast the object and will fail if obj is not null and not a string. obj.ToString() converts obj to a string (even if it is not a string), it will fail is obj is null as it's a method call. |
||
|
|
ToString() is object class method (the main parent class in .net) which can be overloaded in your class which inherits from object class even if you didn't inherited from it. (string) is casting which can be implemented in the class it self, the string class so you don't have ability on it. |
||
|
|
|
|
If its any help, you could use the 'as' operator which is similar to the cast but returns null instead of an exception on any conversion failure.
|
||
|
|