Skip to content

Instantly share code, notes, and snippets.

@l4km47
Last active May 9, 2019 12:33
Show Gist options
  • Save l4km47/0ba6c0946acfe9b19f2083b446e23956 to your computer and use it in GitHub Desktop.
Save l4km47/0ba6c0946acfe9b19f2083b446e23956 to your computer and use it in GitHub Desktop.
static string l = "█";
static int i;
static void ConsoleProgressBar(int precentage)
{
Console.Write(string.Empty.PadRight(i, '\b'));
Console.Write(l + " " + precentage + "%");
i = (l + " " + precentage + "%").Length + 1;
l = "█";
for (int r = 0; r < precentage; r++)
{
l = l + "█";
}
}
//Usage
ConsoleProgressBar(ProgressPercentage);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment