I would like to know if it possible to for example use variable as property or method or command. What I mean for example that I would save ".length" as a string, lets call it len. And then use it on word as a property.
For example:
String len = ".length"
string C = "Cat"
int L_Cat = C.len
Now this does not work but C.Length
would work. So is there a way to get the .Length
out of the string status and evaluate it as a property?