/
aprogrammer
/
dotnet-docs
Обзор
Документация
Войти
/
aprogrammer
/
dotnet-docs
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
docs/fundamentals/runtime-libraries/snippets/System/String/Format/vb/qa29.vb
14 строк
357 B
Genevieve Warren
Move member remarks (#39270)
30 янв 2024, 00:43
Не верифицирован
30 янв 2024, 00:43
6c88824
Код
Авторство
О чём код?
' Visual Basic .NET Document Option Strict On ' <Snippet29> Module Example10 Public Sub Main() Dim value As Integer = 1326 Dim result As String = String.Format("{0,10:D6} {0,10:X8}", value) Console.WriteLine(result) End Sub End Module ' The example displays the following output: ' 001326 0000052E ' </Snippet29>