Skip to content

Instantly share code, notes, and snippets.

@dsimunic
Created December 27, 2013 17:26
Show Gist options
  • Save dsimunic/8149917 to your computer and use it in GitHub Desktop.
Save dsimunic/8149917 to your computer and use it in GitHub Desktop.
public static void OverwriteConsoleMessage(string message)
{
Console.CursorLeft = 0;
int maxCharacterWidth = Console.WindowWidth - 1;
if (message.Length > maxCharacterWidth) {
message = message.Substring(0, maxCharacterWidth - 3) + "...";
}
message = message + new string(' ', maxCharacterWidth - message.Length);
Console.Write(message);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment