Visual Basic:如何在变量中包含整数?

时间:2013-03-16 16:11:24

标签: vb.net string variables

如果问题有点乏味,我道歉,但我要做的是从“R1”,“R2”,“R3”这样的文本文件中访问一系列内容。我可以将该名称中的整数作为单独的变量吗?

所以,如果我有......

Dim R0 As String = "Hello"
Dim R1 As String = "Goodbye"

Dim RCount As Integer = 0

MsgBox(R & RCount) 'Returns Hello

1 个答案:

答案 0 :(得分:2)

不是没有创建和评估Expression Tree,但你可以在数组中使用数组和索引。

Dim R(6) as String

R(0) = "Hello"
R(1) = "Goodbye"

Dim RCount as Integer = 0

MsgBox(R(RCount))