Welcome to the documentation for FluentScheduler, an automated job scheduler with fluent interface for the .NET platform.
JobManager.Initialize();
JobManager.AddJob(
() => Console.WriteLine("5 minutes just passed."),
s => s.ToRunEvery(5).Minutes()
);
Make sure to check the GitHub repository for community discussion and its source code.