Amanda_Sample_Project.BuisnesLogic.DoNothingFor C# (CSharp) Method

DoNothingFor() public static method

public static DoNothingFor ( int i ) : void
i int
return void
        public static void DoNothingFor(int i)
        {
            doneNothing += i;

            Thread.Sleep(i);
        }