Amanda_Sample_Project.BuisnesLogic.DoNothingForFactor C# (CSharp) Method

DoNothingForFactor() public static method

public static DoNothingForFactor ( double d, int i ) : void
d double
i int
return void
        public static void DoNothingForFactor(double d, int i)
        {
            doneNothing += (int) Math.Pow(d, i);

            Thread.Sleep((int) Math.Pow(d, i));
        }