Skip to content

Instantly share code, notes, and snippets.

@gavilanch
Created October 10, 2019 22:36
Show Gist options
  • Save gavilanch/9687e38df4990598da8c835306f1db02 to your computer and use it in GitHub Desktop.
Save gavilanch/9687e38df4990598da8c835306f1db02 to your computer and use it in GitHub Desktop.
@code{
Timer timer;
protected override void OnInitialized()
{
timer = new Timer();
timer.Interval = 500; // cada medio segundo
timer.Elapsed += TimerOnElapsed; // ejecutar este método
timer.Start();
}
private void TimerOnElapsed(object sender, ElapsedEventArgs e)
{
Console.WriteLine("Timer ejecutado");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment