This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// REMEMBER - Thread.Sleep is evil in MOST cases! | |
// Code From http://www.bluebytesoftware.com/blog/PermaLink,guid,1c013d42-c983-4102-9233-ca54b8f3d1a1.aspx | |
using System; | |
using System.Diagnostics; | |
using System.Threading; | |
class Program { | |
public static volatile int x = 0; |