/
aprogrammer
/
dotnet-docs
Обзор
Документация
Войти
/
aprogrammer
/
dotnet-docs
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
docs/fundamentals/runtime-libraries/snippets/System/String/Format/vb/starting2.vb
26 строк
845 B
Genevieve Warren
Move member remarks (#39270)
30 янв 2024, 00:43
Не верифицирован
30 янв 2024, 00:43
6c88824
Код
Авторство
О чём код?
' Visual Basic .NET Document Option Strict On Module Example15 Public Sub Main() ' <Snippet35> Dim pricePerOunce As Decimal = 17.36D Dim s As String = String.Format("The current price is {0} per ounce.", pricePerOunce) ' Result: The current price is 17.36 per ounce. ' </Snippet35> Console.WriteLine(s) ShowFormatted() End Sub Private Sub ShowFormatted() ' <Snippet36> Dim pricePerOunce As Decimal = 17.36D Dim s As String = String.Format("The current price is {0:C2} per ounce.", pricePerOunce) ' Result if current culture is en-US: ' The current price is $17.36 per ounce. ' </Snippet36> Console.WriteLine(s) End Sub End Module