AsyncDolls.AsyncDollsScript.MethodAsync3 C# (CSharp) Method

MethodAsync3() static private method

static private MethodAsync3 ( Func next ) : System.Threading.Tasks.Task
next Func
return System.Threading.Tasks.Task
        static Task MethodAsync3(Func<Task> next)
        {
            Console.WriteLine("Method3");
            return next();
        }