Is there a simple method of implementing indirect addressing in VB?
For e.g.
Dim Name1 as string = "Erik"
Dim Name2 as string = "Name1"
Is there a function where lets say if I write below command:
@Name2 = "Ummi"
It will update Name1
variable to "Ummi".
I have use such function before one industrial company software.
Is there such thing available for normal VB program editor. I am using Visual Studio 2019 for my current application.