/
aprogrammer
/
dotnet-docs
Обзор
Документация
Войти
/
aprogrammer
/
dotnet-docs
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
docs/fundamentals/runtime-libraries/snippets/System/Object/ToString/vb/array1.vb
19 строк
491 B
Genevieve Warren
Move member remarks (#39270)
30 янв 2024, 00:43
Не верифицирован
30 янв 2024, 00:43
6c88824
Код
Авторство
О чём код?
' Visual Basic .NET Document Option Strict On ' <Snippet6> Imports System.Collections.Generic Module Example Public Sub Main() Dim values() As Integer = { 1, 2, 4, 8, 16, 32, 64, 128 } Console.WriteLine(values.ToString()) Dim list As New List(Of Integer)(values) Console.WriteLine(list.ToString()) End Sub End Module ' The example displays the following output: ' System.Int32[] ' System.Collections.Generic.List`1[System.Int32] ' </Snippet6>