BTool.TxDataOutThread.TxDataOutThread C# (CSharp) Method

TxDataOutThread() public method

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