Advertisement
Guest User

Untitled

a guest
Jun 25th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.35 KB | None | 0 0
  1.     public class SerialPortListener
  2.     {
  3.         SerialPortManager _serialPortManager;
  4.  
  5.         public void Start()
  6.         {
  7.             _serialPortManager = new SerialPortManager();
  8.             _serialPortManager.StartListening();
  9.         }
  10.  
  11.          public void Stop()
  12.          {
  13.              _serialPortManager.StopListening();
  14.          }
  15.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement