BasicKnowledgeCSharp/LessonsAndTasks/Lesson 40 - Оператор объекдинения с NULL/Program.cs

15 lines
280 B
C#
Raw Normal View History

2024-10-05 09:59:53 +03:00
using System;
/*
* Оператора объединения с NULL ??
*/
class Program
{
static void Main()
{
string str = null;
Console.WriteLine(str ?? "NULL");
Console.WriteLine("Lenght" + str ?? "no");
Console.ReadKey();
}
}