AsyncDolls.AsyncDollsScript.TheDollsGeneric C# (CSharp) Method

TheDollsGeneric() private method

private TheDollsGeneric ( ) : void
return void
        public void TheDollsGeneric()
        {
            Action done = () => { Console.WriteLine("Done"); };

            var actions = new List<Action<Action>>
            {
                Method1,
                Method2,
                Method3,
                a => done()
            };

            Invoke(actions);
        }