BTool.RxTxMgrThread.RxTxMgrThread C# (CSharp) Method

RxTxMgrThread() public method

public RxTxMgrThread ( ) : System
return System
        public RxTxMgrThread()
        {
            taskThread = new Thread(new ParameterizedThreadStart(TaskThread));
            taskThread.Name = "RxTxMgrThread";
            taskThread.Start((object)threadData);
            Thread.Sleep(0);
            while (!taskThread.IsAlive)
            { }
        }