AsyncDelegate.Program.TakesAWhile C# (CSharp) Method

TakesAWhile() public static method

public static TakesAWhile ( int x, int ms ) : int
x int
ms int
return int
        public static int TakesAWhile(int x, int ms)
        {
            Task.Delay(ms).Wait();
            return 42;
        }
    }