Hi,

I have a list which is named:

List<TestList> TestList = new List<TestList>();

I am able to the value from it by using e.g.
string value = TestList[0].ListItem1

Is it possible to make ListItem1 variable?
so something like:

string variable = "ListItem1"
string value = TestList[0].(string)variable

Thanks