Created
May 3, 2016 14:02
-
-
Save xplicit/2224ad656e1d4830a13df16e609b747d to your computer and use it in GitHub Desktop.
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
using System; | |
using System.IO; | |
using System.Threading; | |
for(int i=0;i<10;i++) | |
{ | |
Console.WriteLine("i={0}",i); | |
Thread.Sleep(1000); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment