/
aprogrammer
/
dotnet-docs
Обзор
Документация
Войти
/
aprogrammer
/
dotnet-docs
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
docs/fundamentals/runtime-libraries/snippets/System/FormatException/Overview/fsharp/starting2.fs
20 строк
525 B
Genevieve Warren
Move member remarks (#39270)
30 янв 2024, 00:43
Не верифицирован
30 янв 2024, 00:43
6c88824
Код
Авторство
О чём код?
module starting2 open System let showFormatted () = // <Snippet36> let pricePerOunce = 17.36m String.Format("The current price is {0:C2} per ounce.", pricePerOunce) |> printfn "%s" // Result if current culture is en-US: // The current price is $17.36 per ounce. // </Snippet36> // <Snippet35> let pricePerOunce = 17.36m String.Format("The current price is {0} per ounce.", pricePerOunce) |> printfn "%s" // Result: The current price is 17.36 per ounce. // </Snippet35> showFormatted ()