Combine 2 variable content to name a variable

s it possible to combine to variable content into a variable name?

For example:

Dim a As String = “First”
Dim b As String = “Last”

Then combine these 2 into variable name for the constant dynamic variable like:

Const FirstLast As String (inside a module, localization) then print the content, example:

label1.text = a + b with (“en”) <- localization language
Translated : label1.text = FirstLast(“en”)

Hope I have explained what Im trying to do. Is it possible?

No, this isn’t possible. At run time, variable names play no active role anymore, except for debugging purposes; a variable is just a place in memory. However you could probably achieve what you are after by using the concatenated string as a key in a dictionary to retrieve an associated value.