/
aprogrammer
/
dotnet-docs
Обзор
Документация
Войти
/
aprogrammer
/
dotnet-docs
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
docs/fundamentals/runtime-libraries/snippets/System/Console/Overview/csharp/source.cs
21 строка
506 B
Genevieve Warren
Add remarks for core types (#38970)
05 янв 2024, 22:14
Не верифицирован
05 янв 2024, 22:14
71d1377
Код
Авторство
О чём код?
// <Snippet1> using System; public class Example4 { public static void Main() { Console.Write("Hello "); Console.WriteLine("World!"); Console.Write("Enter your name: "); string name = Console.ReadLine(); Console.Write("Good day, "); Console.Write(name); Console.WriteLine("!"); } } // The example displays output similar to the following: // Hello World! // Enter your name: James // Good day, James! // </Snippet1>