namespace ConsoleApplication1
static SemaphoreSlim _sem = new SemaphoreSlim(6);
for (int i = 0; i <= 5; i++) new Thread(Enter).Start(i);
static void Enter(object id)
Console.WriteLine(id + " wants to enter");
Console.WriteLine(id + " is in!");
Thread.Sleep(3000 * (int)id);
Console.WriteLine(id + " is leaving");