Is there a way to dynamically name variables?
What I need to do is take a list of variable names from an input file and create variables with those names. Is this p
Use a Dictionary.
Dictionary
e.g.
var vartable = new Dictionary(); vartable[strLine] = new Variable(input);