C# | How to change the visibility of the Cursor of Console
Given the normal Console in C#, the task is to change the visibility of the Cursor of the Console.
Approach: This can be done using the CursorVisible property in the Console class of the System package in C#. It gets or sets a value indicating whether the cursor is visible.
Program 1: Getting the value of CursorVisible
// C# program to illustrate the // Console.CursorVisible Property using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GFG { class Program { static void Main( string [] args) { // Get the default CursorVisible Console.WriteLine( "Current Cursor Visible: {0}" , Console.CursorVisible); } } } |
Output:
Program 2: Setting the value of CursorVisible
// C# program to illustrate the // Console.CursorVisible Property using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GFG { class Program { static void Main( string [] args) { // Get the CursorVisible Console.WriteLine( "Current Cursor Visible: {0}" , Console.CursorVisible); // Set the CursorVisible Console.CursorVisible = false ; // Get the CursorVisible Console.Write( "Current Cursor Visible: {0}" , Console.CursorVisible); } } } |
Output:
Please Login to comment...