/
aprogrammer
/
dotnet-docs
Обзор
Документация
Войти
/
aprogrammer
/
dotnet-docs
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
docs/fundamentals/runtime-libraries/snippets/System/String/IsNullOrEmpty/fsharp/NullString2.fs
12 строк
249 B
Genevieve Warren
Move member remarks (#39270)
30 янв 2024, 00:43
Не верифицирован
30 янв 2024, 00:43
6c88824
Код
Авторство
О чём код?
namespace IsNullOrEmpty open System module NullString2 = // <Snippet3> let s = "" printfn "The length of '%s' is %d." s s.Length // The example displays the following output: // The length of '' is 0. // </Snippet3>