how to take input in c#
using System;
namespace beginner
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("what is your Name:- ");
string userName = Console.ReadLine();
Console.WriteLine("Hello: " + userName);
}
}
}