/
aprogrammer
/
dotnet-docs
Обзор
Документация
Войти
/
aprogrammer
/
dotnet-docs
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
docs/fundamentals/runtime-libraries/snippets/System.Text/StringBuilder/Overview/fsharp/immutability2.fs
14 строк
358 B
Genevieve Warren
Add remarks for core types (#38970)
05 янв 2024, 22:14
Не верифицирован
05 янв 2024, 22:14
71d1377
Код
Авторство
О чём код?
module immutability2 #nowarn "9" do // <Snippet1> let mutable value = "This is the first sentence" + "." use start = fixed value value <- System.String.Concat(value, "This is the second sentence. ") use current = fixed value printfn $"{start = current}" // The example displays the following output: // False // </Snippet1>