以下是一些示例代码: Dim arrValue(3) as IntegerarrValue(0) = 5arrValue(1) = 4arrValue(2) = 7arrValue(3) = 1 如何将这四个值彼此相邻显示. 更具体地说,给定这些值我如何使txtValue.Text = 5471 编辑: 我的想
Dim arrValue(3) as Integer arrValue(0) = 5 arrValue(1) = 4 arrValue(2) = 7 arrValue(3) = 1
如何将这四个值彼此相邻显示.
更具体地说,给定这些值我如何使txtValue.Text = 5471
编辑:
我的想法是使用某种函数将每个函数追加到最后使用这样的循环:
Dim finalValue For i As Integer = 3 To 0 Step -1 arrValue(i).appendTo.finalValue Next
显然代码不起作用虽然前提是声音我不知道附加内容的语法,但我确信无论如何我都无法附加整数,我需要将每个单独的值转换为字符串第一.
另一种方法是使用String.Join:Sub Main Dim arrValue(3) as Integer arrValue(0) = 5 arrValue(1) = 4 arrValue(2) = 7 arrValue(3) = 1 Dim result As String = String.Join("", arrValue) Console.WriteLine(result) End Sub