Suppose my class has a couple of similar properties and I want to select one dynamically based on a string variable:
MyClass properties:
PropertyOne
PropertyTwo
Some generic code:
myString = "One"
MyClass.Property & myString = "blah" 'this doesn't work