Animatroller.Framework.LogicalDevice.MotorWithFeedback.MotorWithFeedback C# (CSharp) Метод

MotorWithFeedback() публичный Метод

public MotorWithFeedback ( string name ) : System
name string
Результат System
        public MotorWithFeedback(string name)
        {
            this.name = name;
            Executor.Current.Register(this);

            this.vector = new MotorVector(0, 0, TimeSpan.FromMilliseconds(0));
            this.movementDone = new ManualResetEvent(true);
        }