public ComDriver()
 {
     _Socket = new UDPPort();
     _Socket.Start();
     _Driver = new Thread(() => Start());
     _Driver.Start();
 }