To change the CursorSize of the Console in C#, use the Console.CursorSize property in C#.
Let us see an example −
using System; class Demo { public static void Main (string[] args) { Console.BackgroundColor = ConsoleColor.Blue; Console.WriteLine("Background color changed = "+Console.BackgroundColor); Console.ForegroundColor = ConsoleColor.Yellow; Console.WriteLine("\nForeground color changed = "+Console.ForegroundColor); Console.CursorSize = 1; Console.WriteLine("\nCursorSize = "+Console.CursorSize); } }
This will produce the following output −