Ejemplo n.º 1
0
        public static void AddActionInstruction(StartupAction action)
        {
            if (Actions.Any(x => x.GetType() == action.GetType()))
            {
                return;
            }

            Actions.Add(action);
        }