cs11dotnet7/vscode/Chapter06/WarningsAsErrors/Program.cs

10 lines
284 B
C#
Raw Normal View History

2022-09-17 20:16:13 +02:00
// See https://aka.ms/new-console-template for more information
Console.Write("Enter a name: ");
string? name = Console.ReadLine();
if (name == null)
{
Console.WriteLine("You did not enter a name.");
return;
}
Console.WriteLine($"Hello, {name} has {name.Length} characters!");