Hi,
Is it possible to do a concatanation of a variable name itself?
Ex:
I want to turn 5 variable to 0
I would like something like:
Is There a way to do that in VB.Net ?
Thanks
Is it possible to do a concatanation of a variable name itself?
Ex:
I want to turn 5 variable to 0
VB.NET:
De1Lock = 0
De2Lock = 0
De3Lock = 0
De4Lock = 0
De5Lock = 0
I would like something like:
VB.NET:
For i = 1 To 5
De[i]Lock = 0
Next
Is There a way to do that in VB.Net ?
Thanks