I'm trying to work around a problem I have; To do so I'd like to create an unknown number of public variables with unknown names. This data is being read from an external file so can't be declared before the file is read, of course.
Is there a way I can declare public variables after reading the file from within a function, where they would normally be private?
Is there a way I can declare public variables after reading the file from within a function, where they would normally be private?
1