次のコードで VB.Net で IndexOutOfRangeException が発生するのはなぜですか。
Dim intNum() As Integer = {1, 2, 3, 4, 5}
Dim tot As Integer
For Each n As Integer In intNum
tot = tot + intNum(n)
Next
MsgBox(tot)
次のコードで VB.Net で IndexOutOfRangeException が発生するのはなぜですか。
Dim intNum() As Integer = {1, 2, 3, 4, 5}
Dim tot As Integer
For Each n As Integer In intNum
tot = tot + intNum(n)
Next
MsgBox(tot)