/
aprogrammer
/
dotnet-docs
Обзор
Документация
Войти
/
aprogrammer
/
dotnet-docs
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
samples/snippets/visualbasic/programming-guide/language-features/arrays/array-class.vb
10 строк
278 B
Andy De George
Move snippets from samples repo to this repo (#17296)
03 мар 2020, 19:23
Не верифицирован
03 мар 2020, 19:23
dbbeda1
Код
Авторство
О чём код?
Module Example Public Sub Main() Dim arr As Array = Array.CreateInstance(GetType(Object), 19) Console.WriteLine(arr.Length) Console.WriteLine(arr.GetType().Name) End Sub End Module ' The example displays the following output: ' 19 ' Object[]