How to change the visibility of the Cursor of Console in C#



To change the visibility of the Cursor, use the Console.CursorVisible property.

Example

Let us see an example −

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; class Demo {    public static void Main (string[] args) {       Console.BackgroundColor = ConsoleColor. Black;       Console.WriteLine("Background color changed = "+Console.BackgroundColor);       Console.ForegroundColor = ConsoleColor.White;       Console.WriteLine("
Foreground color changed = "+Console.ForegroundColor);       Console.InputEncoding = Encoding.ASCII;       Console.WriteLine("Input Encoding Scheme = "+Console.InputEncoding);       Console.OutputEncoding = Encoding.ASCII;       Console.WriteLine("Output Encoding Scheme = "+Console.OutputEncoding);       Console.CursorVisible = false;       Console.Write("
Cursor is Visible? "+ Console.CursorVisible);    } }

Output

This will produce the following output −

Updated on: 2019-11-14T06:43:18+05:30

424 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements