Introducing Radical.sh

Forget Code launches a powerful code generator for building API's

Assigning the title to the console in C#

The Console.Title property allows us to change the console window title.
We can use it to reduce the amount of text written to the screen.

using System;

namespace forgetCode
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.Title = Console.ReadLine();
            
        }

    }
}