Skip to content

Instantly share code, notes, and snippets.

@luisdeol
Created November 12, 2017 13:34
Show Gist options
  • Save luisdeol/456ce156c7a26f9c55d78c7a6aa87549 to your computer and use it in GitHub Desktop.
Save luisdeol/456ce156c7a26f9c55d78c7a6aa87549 to your computer and use it in GitHub Desktop.
Using Thread Pools
namespace MultiThreadingExamples
{
class UsingThreadPools
{
static void Main(string[] args)
{
ThreadPool.QueueUserWorkItem((work) =>
{
Console.WriteLine("Luis is trying to do something here...");
});
Console.ReadLine();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment