Hi
Why is there so may ways to convert to a string in .net? The ways I have seen are .ToString, Convert.ToString() and (string). What is the Difference.
|
2
|
|
|
|
|
|
|
| object does not need to implement IConvertible. – Dave Van den Eynde Mar 30 at 13:44 | |
| under "(string)obj" you say it will return null if the object is null, but it will actually throw a NullReferenceException. – Barry Fandango Mar 30 at 14:28 | |
| @Barry, if object doesn't implement custom cast to string operator it just won't compile, otherwise it can throw an exception - depends on how exactly the type implements cast to string operator. – Koistya Navin Mar 30 at 15:39 |
|
|
Convert.ToString() will return an empty string if the object is null .ToString and (String) will throw an exception. Convert.ToString will internally call .ToString() if the value is null it will return an empty String. |
||
|
|
|
Think. ToString is a virtual method, and each type can implement it however it wants. Also System.Object provides default implementations so that it always succeeds. Convert.ToString works only with nulls as well and allows you to use IFormat provier as noted in the comment. Casting to string requires object to implement casting operator. Again, types can implement it however they like, but most types do not, so you may get an exception here. Use .ToString as your best option. |
||||
|
|
|
ToString() is a method of object, and it will always work on a non-null reference, so you'll get something, but whether that something is what you want, is a different story. Convert.ToString() will yield the same result in most cases, but isn't as flexible as Object.ToString() as you can't pass custom formatting rules. (string) will cast your object to string, and if it isn't a string then you'll get an InvalidCastException(). |
||
|
|
|
|
Don't forget |
||
|
|
|
|
.ToString() is an instance method which asks the object for its string representation. When the object is null, this will throw a exception. (string) is a cast to the string type, which isn't a very good idea in most cases except for simple data types, since it can break (throw an exception) when it's null or an invalid cast Convert.ToString() does a bit more checking than a simple cast, giving a more robust alternative to the cast. It will return the empty string when the object is null. |
|||
|
|
|
|
|
|||
|
|
|
|
|
||
|
|
|
|
Not to nitpick but
|
||
|
|