Exemplo n.º 1
0
 private void ReadSoftDog()
 {
     if (!ParkingSoftDogVerify.VerifyRight())
     {
         System.Environment.Exit(0);
     }
 }
Exemplo n.º 2
0
 private void tmrCheckDog_Tick(object sender, EventArgs e)
 {
     tmrCheckDog.Enabled = false;
     ParkingSoftDogVerify.Check();
     tmrCheckDog.Enabled = true;
 }