Skip to content

Instantly share code, notes, and snippets.

@tpdns90321
Last active April 12, 2016 10:11
Show Gist options
  • Save tpdns90321/dda15bcf9c1a9e7ccdb2c9d3652a799c to your computer and use it in GitHub Desktop.
Save tpdns90321/dda15bcf9c1a9e7ccdb2c9d3652a799c to your computer and use it in GitHub Desktop.
C# Thread Example
using System;
using System.Threading;
namespace FuncSleep{
class Program{
void FuncA(){
System.Threading.Sleep(1000);
Console.WriteLine("Hello, World");
}
void Main(string[] args){
Thread T = new Thread(FuncA);
T.Start();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment