Skip to content

UrbanBjorkman/SimpleTimer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

SimpleTimer

Javascript like methods for SetTimeout and SetInterval

Simple usage

Static class and methods to execute code after a timeout (in milliseconds)

SimpleTimer.SetTimeout(() => Debug.WriteLine("Code called once in 10s"), 10000);

Static class and methods to execute code in an interval

SimpleTimer.SetInterval(() => Debug.WriteLine("Code once every 5s"), 5000);

About

Javascript like methods for SetTimeout and SetInterval

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages