TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
This blog shows on how to use a timer control in C#
Karthikeyan Anbarasan
Mar 31, 2011
2.8
k
0
0
facebook
twitter
linkedIn
Reddit
WhatsApp
Email
Bookmark
This blog shows on how to use a timer control in C#
This blog shows on how to use a timer control and how to manipulate the control as per our requirement
using System;
using
System
.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
namespace Demo
{
class Program
{
private static void ThreadingTimer()
{
var t1 = new System.Threading.Timer(
TimeAction, null, TimeSpan.FromSeconds(2),
TimeSpan.FromSeconds(3));
Thread.Sleep(15000);
t1.Dispose();
}
static void TimeAction(object o)
{
Console.WriteLine("System.Threading.Timer {0:T}", DateTime.Now);
}
private static void fntimer()
{
var t1 = new System.Timers.Timer(1000);
t1.AutoReset = true;
t1.Elapsed += TimeAction;
t1.Start();
Thread.Sleep(10000);
t1.Stop();
t1.Dispose();
}
static void TimeAction(object sender, System.Timers.ElapsedEventArgs e)
{
Console.WriteLine("System.Timers.Timer {0:T}", e.SignalTime);
}
static void Main(string[] args)
{
fntimer();
}
}
}
Next Recommended Reading
Show gridview control cell value in tooptip on mouseover