ALE.EventLoop.Start C# (CSharp) Méthode

Start() public static méthode

public static Start ( ) : void
Résultat void
        public static void Start()
        {
            IsRunning = true;
            if (Workers.Count == 0)
            {
                AddWorker();
            } else
            {
                Workers.ForEach(x => x.Start());
            }
        }

Same methods

EventLoop::Start ( System.Action startEvent ) : void