Not quite. CType performs conversion in addition to casting, so for
example the following works
Dim o As Object = "5"
Dim i As Integer = CType(o, Integer) ' or CInt(o)
but the following doesn't
object o = "5";
int i = (int)o;
In that sense, VB.NET's DirectCast operator is more of a strict
casting operator.
Mattias
Ask a Question
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.