変数名を自動的に動的に宣言する方法をオンラインで検索しましたが、結果は出ませんでした。次のように私は単純化していたコードへの私のアプローチは、次のとおりです。vb.netで自動的に変数名を動的に宣言する代替語
dim choice1 as string
dim choice2 as string
dim choice3 as string
...
私はあなたが私を助けることができる
dim count as integer
while count is 1 to 10
count +=1
end while
dim (choice+count) as string
' it suppose to create variable choice with the addition to the name from 1 to 10 like choice1, choice2, choice3 and so on.
を次のように私はこれをapprochできることを願います。
PS:私もそうのような配列で宣言された変数を作成してみました:
dim count as integer
Dim var As Array = {Dim choice1 as string, dim choice2 as string}
while count is 1 to 10
var.add(dim choice+count as string)
end while