AsyncDolls.AsyncDollsScript.MethodAsync1 C# (CSharp) Method

MethodAsync1() static private method

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