For example i got a class and its got its own properties and i am passing the name of the class and the name of the property to be called to a function
Say for example exp is the variable which i am passing which contains a value = "ClassA,Property1"
Function Property2BCalled(byval exp as String)
dim classname = split(exp,",")(0)
dim propertyname=split(exp,",")(1)
dim value= classname.propertyname
End Function
I wanna do something like that,given above.