up vote 4 down vote favorite
share [g+] share [fb]

I would like to be able to cast a value dynamically where the type is known only on runtime.

something like this

myvalue = ctype (value, "String, Integer or Boolean")

the string that contains the type value is passed as argument and also read from DB.

And the value is stored as string in the DB.

Is this possible ?

Thanks in advance.

link|improve this question

feedback

5 Answers

up vote 4 down vote accepted

Sure, but myvalue will have to be defined as of type object, and you don't necessarily want that. Perhaps this is a case better served by generics.

What determines what type will be used?

link|improve this answer
just a string indicating the type "String", "integer", "boolean" – Youssef Oct 30 '08 at 19:52
Then what sets the string? – Joel Coehoorn Oct 30 '08 at 19:53
the string is passed as argument – Youssef Oct 30 '08 at 20:00
and the value is stored as string in the DB – Youssef Oct 30 '08 at 20:03
codeproject.com/KB/dotnet/CheatSheetCastingNET.aspx .. that's all I found on the topic – Tigraine Oct 30 '08 at 20:05
show 4 more comments
feedback

Well, how do you determine which type is required? As Joel said, this is probably a case for generics. The thing is: since you don't know the type at compile time, you can't treat the value returned anyway so casting doesn't really make sense here.

link|improve this answer
feedback
 Dim bMyValue As Boolean
 Dim iMyValue As Integer
 Dim sMyValue As String 
 Dim t As Type = myValue.GetType


 Select Case t.Name
     Case "String"
        sMyValue = ctype(myValue, string)
     Case "Boolean"
        bMyValue = ctype(myValue, boolean)
     Case "Integer"
        iMyValue = ctype(myValue, Integer)
 End Select

It's a bit hacky but it works.

link|improve this answer
feedback

This is the shortest way to do it. Ive tested it with multiple types.

Sub DoCast(ByVal something As Object)

    Dim newSomething = Convert.ChangeType(something, something.GetType())

End Sub
link|improve this answer
feedback

Maybe instead of dynamically casting something (which doesn't seem to work) you could use reflection instead. It is easy enough to get and invoke specific methods or properties.

Dim t As Type = testObject.GetType()
Dim prop As PropertyInfo = t.GetProperty("propertyName")
Dim gmi As MethodInfo = prop.GetGetMethod()
gmi.Invoke(testObject, Nothing)

It isn't pretty but you could do some of that in one line instead of so many.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.