Developed a basic, light-weight library for scheduling tasks in C# .Net
Source code can be found at GitHub TaskSchedular TaskScheduler is a simple and efficient C# .Net library that runs given tasks at the specified date and time. Efficient : There is no polling. Only runs when a task is due. This is achieved though AutoResetEvent. Simple : Merely 8 KB in size. Pretty easy to…