Ros_CSharp.Poll_Signal.Poll_Signal C# (CSharp) Méthode

Poll_Signal() public méthode

public Poll_Signal ( System.Action psf ) : System
psf System.Action
Résultat System
        public Poll_Signal(Action psf)
        {
            if (psf != null)
            {
                Op = psf;
            }
            thread = new Thread(threadFunc) { IsBackground = true };
            thread.Start();
        }