/
spirzen
/
it-code-examples
Обзор
Документация
Войти
/
spirzen
/
it-code-examples
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/csharp/code-402-44-003/main.cs
21 строка
631 B
Spirzen
Code migration pack
09 июн 2026, 01:41
09 июн 2026, 01:41
cebc284
Код
Авторство
О чём код?
// Классическая проверка if (order == null) { return NotFound(); } // Оператор нулевого слияния string description = product.Description ?? "Описание отсутствует"; // Оператор условного доступа int? orderCount = shoppingCart?.Items?.Count; // Pattern matching (C# 7.0+) if (response is not null) { ProcessResponse(response); } // Nullable reference types (C# 8.0+) #nullable enable string? nullableString = null; // Разрешено string nonNullableString = "значение"; // Не может быть null #nullable disable