Update() public method

public Update ( ) : void
return void
Exemplo n.º 1
0
 private void RefreshTimer_Tick(object sender, EventArgs e)
 {
     try
     {
         Stick.Update();
         ShowCurrentValues();
         RefreshUpdateTab();
     }
     catch
     {
         Console.WriteLine("Lost the device");
         RefreshTimer.Stop();
         Stick = null;
     }
 }