using System.Collections.Generic;
namespace ConsoleApplication1
public class nqkuvmagazin
public static SemaphoreSlim _sem = new SemaphoreSlim(5);
public static void Main()
for (int i = 0; i <= 6; i++) new Thread(Enter).Start(i);
public 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 ");