Protogame.ThreadedColorInImageDetection.Start C# (CSharp) Méthode

Start() public méthode

public Start ( ) : void
Résultat void
        public void Start()
        {
            if (_isStarted)
            {
                throw new InvalidOperationException("Can't start continuous analysis of a texture twice.");
            }

            _thread.Start();
            _isStarted = true;
        }