文字列内にいくつかの変数の名前を保存しようとしています。例えば:
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.
これは、私が取り組んでいるデバッグに役立ちます。