/
aprogrammer
/
dotnet-docs
Обзор
Документация
Войти
/
aprogrammer
/
dotnet-docs
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
docs/fundamentals/runtime-libraries/snippets/System/FormatException/Overview/csharp/starting2.cs
28 строк
803 B
Genevieve Warren
Move member remarks (#39270)
30 янв 2024, 00:43
Не верифицирован
30 янв 2024, 00:43
6c88824
Код
Авторство
О чём код?
using System; public class Example15 { public static void Main() { // <Snippet35> Decimal pricePerOunce = 17.36m; String s = String.Format("The current price is {0} per ounce.", pricePerOunce); Console.WriteLine(s); // Result: The current price is 17.36 per ounce. // </Snippet35> ShowFormatted(); } private static void ShowFormatted() { // <Snippet36> Decimal pricePerOunce = 17.36m; String s = String.Format("The current price is {0:C2} per ounce.", pricePerOunce); Console.WriteLine(s); // Result if current culture is en-US: // The current price is $17.36 per ounce. // </Snippet36> } }