Created
October 10, 2019 22:36
-
-
Save gavilanch/9687e38df4990598da8c835306f1db02 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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