views:

39

answers:

1

Hi, I have a string that contains the name of a class variable that I know exists for class A. I need to get the value of this variable (i.e. dereferencing), how do I do it?

+1  A: 
(A bindingOf: #VariableName) value
Lukas Renggli