In VB.NET CINT(VB.NET) is Integer.Parse in .NET Framework, what is the .NET equivalent for (VB.NET) CType?
|
|
|
|
|
|
|
For the sake of completeness, the IL equivalent of casting is:
However, the Visual Basic compiler, translates the expression to a call to one of the |
|||
|
|
|
|
For casting objects, If you will be casting to a specific native type, you can use the methods in the Convert class to do this. (Not the same as For example
There are a bunch of others for the various types. |
|||
|
|
|
|
You could always do something like this:
Essentially put the type you need to convert to in the preceeding parens. This method doesn't bring back the nice intellisense that doing the ctype() operation does, you get it at the next line though. |
||||
|
