Click here to Skip to main content
15,885,757 members
Articles / Programming Languages / C#

Time scheduler in C#

Rate me:
Please Sign up or sign in to vote.
4.67/5 (17 votes)
16 May 2007GPL34 min read 135.7K   2.5K   82  
This library allows iterating through a sequence of events or time ranges based on a time schedule.
using System;
using System.Collections.Generic;
using System.Text;

namespace Idaligo.Time
{
	public interface IAnchor : ISequence
	{
		DateTime Next(DateTime from);
		DateTime Previous(DateTime from);
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)


Written By
United States United States
C# .NET developer since 2003

Comments and Discussions