08-31-2010, 01:01 PM
Has to be a console application.
Imports:
Code:
Usage: Just replace the Main void with the code above.
P.S. It sometimes makes funky images.
Imports:
Code:
using System.Threading;
Code:
Code:
static void Main(string[] args)
{
Console.ForegroundColor = ConsoleColor.Green;
while (1 != 2) // Obviously 1 doesn't equal 2. Bad Loop.
{
Random integer = new Random();
Console.Write(Convert.ToString(integer.Next(0, 2)));
Thread.Sleep(8); // Otherwise it repeats itself. Plus slow typing = cool 8-)
}
}
Usage: Just replace the Main void with the code above.
P.S. It sometimes makes funky images.