Skip to content

Instantly share code, notes, and snippets.

@ToJans
Forked from robashton/ConsoleSpinner.cs
Created October 10, 2012 13:48
Show Gist options
  • Save ToJans/3865762 to your computer and use it in GitHub Desktop.
Save ToJans/3865762 to your computer and use it in GitHub Desktop.
ConsoleSpinner
using System;
namespace Spinner
{
class Program
{
static void Main(string[] args)
{
Console.Write("Working... ");
int spinIndex = 0;
while (true)
{
// obfuscate FTW! Let's hope overflow is disabled or testers are impatient
Console.Write("\b" + @"/-\|"[(spinIndex++) & 3]);
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment