Eu estou tentando armazenar os nomes de algumas variáveis dentro de strings. Por exemplo:
Dim Foo1 as Integer
Dim Foo1Name as String
' -- Do something to set Foo1Name to the name of the other variable --
MessageBox.Show(Foo1Name & is the variable you are looking for.)
' Outputs:
' Foo1 is the variable you are looking for.
Isso iria ajudar com alguma depuração Eu estou trabalhando.