Have some runtime defined schedule for one week, for example:
<schedule>
<s day="Monday", time="1:00:00"></s>
<s day="Sunday", time="3:00:00"></s>
<s day="Wednsday", time="16:00:00"></s>
...
...
</schdule>
On that time i have to call some method.
Is there any built in class in .net/wpf for this purpose?
Or any opensource/free controls?
Or best way is to initialize new timer for each element?
Edit: WPF application.
There’s nothing built-in .NET. You could initialize a Timer for each element. If you are looking for third party components, you may checkout Quartz.NET.