Are all of these equal? Under what circumstances should I choose each over the others?
var.ToString()
CStr(var)
CType(var, String)
DirectCast(var, String)
EDIT: Suggestion from NotMyself…
- TryCast(var, String)
|
|
|
Those are all slightly different, and generally have an acceptable usage.
|
|||||||||||||||||
|
|
I prefer the following syntax:
Hah you can tell I typically write code in C#. 8) The reason I prefer TryCast is you do not have to mess with the overhead of casting exceptions. Your cast either succeeds or your variable is initialized to null and you deal with that accordingly. |
|||||||||
|
|
|
||||
|
|
|
MSDN seems to indicate that the Cxxx casts for specific types can improve performance in VB .NET because they are converted to inline code. For some reason, it also suggests DirectCast as opposed to CType in certain cases (the documentations states it's when there's an inheritance relationship; I believe this means the sanity of the cast is checked at compile time and optimizations can be applied whereas CType always uses the VB runtime.) When I'm writing VB .NET code, what I use depends on what I'm doing. If it's prototype code I'm going to throw away, I use whatever I happen to type. If it's code I'm serious about, I try to use a Cxxx cast. If one doesn't exist, I use DirectCast if I have a reasonable belief that there's an inheritance relationship. If it's a situation where I have no idea if the cast should succeed (user input -> integers, for example), then I use TryCast so as to do something more friendly than toss an exception at the user. One thing I can't shake is I tend to use ToString instead of CStr but supposedly Cstr is faster. |
|||
|
|
|
User Konrad Rudolph advocates for DirectCast() in Stack Overflow question "Hidden Features of VB.NET". |
||||
|
|
|
According to the certification exam you should use Convert.ToXXX() whenever possible for simple conversions because it optimizes performance better than CXXX conversions. |
|||
|
|
|
At one time, I remember seeing the MSDN library state to use CStr() because it was faster. I do not know if this is true though. |
|||||
|