Answers for "c# clear console line"

C#
8

how to clear console in c#

Console.Clear();
Posted by: Guest on March-20-2020
1

c# clear console line

void Method()
{
	Console.WriteLine("Test");
	Console.SetCursorPosition(0, Console.CursorTop - 1);
	ClearCurrentConsoleLine();
}

public static void ClearCurrentConsoleLine()
{
    int currentLineCursor = Console.CursorTop;
    Console.SetCursorPosition(0, Console.CursorTop);
    Console.Write(new string(' ', Console.WindowWidth)); 
    Console.SetCursorPosition(0, currentLineCursor);
}
Posted by: Guest on July-18-2021
0

c# console clear

using System;
using System.Collections.Generic;

class Program {
   static void Main() {
      ConsoleColor foreColor = Console.ForegroundColor;
      ConsoleColor backColor = Console.BackgroundColor;
      Console.WriteLine("Clearing the screen!");
      Console.Clear();
      ConsoleColor newForeColor = ConsoleColor.Blue;
      ConsoleColor newBackColor = ConsoleColor.Yellow;
   }
}
Posted by: Guest on October-26-2020

C# Answers by Framework

Browse Popular Code Answers by Language