Skip to content

Instantly share code, notes, and snippets.

@aevitas
Created September 28, 2021 13:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aevitas/395b50cdaf389a7d395bf330042bdc8f to your computer and use it in GitHub Desktop.
Save aevitas/395b50cdaf389a7d395bf330042bdc8f to your computer and use it in GitHub Desktop.
using System;
namespace CSharpByExample
{
public class Program
{
public static void Main(string[] args)
{
Console.Write("Please enter your name: ");
string name = Console.ReadLine();
Console.WriteLine("Hello, " + name);
Console.ReadLine();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment