static void Main(string[] args)
    {
        Camp camp = new Camp(10);

        camp.doSomething();


        Console.ReadKey();
    }