/
aprogrammer
/
dotnet-docs
Обзор
Документация
Войти
/
aprogrammer
/
dotnet-docs
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
samples/snippets/visualbasic/programming-guide/language-features/arrays/iterate1d.vb
13 строк
267 B
Andy De George
Move snippets from samples repo to this repo (#17296)
03 мар 2020, 19:23
Не верифицирован
03 мар 2020, 19:23
dbbeda1
Код
Авторство
О чём код?
Module IterateArray Public Sub Main() Dim numbers = {10, 20, 30} For index = 0 To numbers.GetUpperBound(0) Console.WriteLine(numbers(index)) Next End Sub End Module ' The example displays the following output: ' 10 ' 20 ' 30