vote up 3 vote down star

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.

flag

75% accept rate

5 Answers

vote up 4 vote down check

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|flag
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/… .. that's all I found on the topic – Tigraine Oct 30 '08 at 20:05
show 4 more comments
vote up 3 vote down

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|flag
vote up 2 vote down

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|flag
vote up 3 vote down

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|flag
vote up 3 vote down
 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|flag

Your Answer

Get an OpenID
or

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