AsyncDolls.AsyncDollsScript.MethodAsync1 C# (CSharp) 메소드

MethodAsync1() 정적인 개인적인 메소드

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