AsyncDolls.AsyncDollsScript.MethodAsync2 C# (CSharp) Method

MethodAsync2() static private method

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