Example #1
0
 public COM(Model model)
 {
     this.model = model;
     serialPort1.PortName = "COM6";
     serialPort1.BaudRate = 9600;
     serialPort1.Open();
 }
Example #2
0
 public Interpreter(Model model, Person personA, Person personB)
 {
     this.model = model;
     this.personA = personA;
     this.personB = personB;
 }