s

How to take input from keyboard in C# edit button Edit

author
Rakesh Kumar Sutar | calendar 11 January 2021 | 1864

using System;

namespace Hello_world
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Write Something...");
            String a= Console.ReadLine();
            Console.WriteLine("Your Input is");
            Console.WriteLine(a);
        }
    }
}