illustrates the use of the Timer class : Timer « Development Class « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Date Time
8.Design Patterns
9.Development Class
10.Event
11.File Stream
12.Generics
13.GUI Windows Form
14.Internationalization I18N
15.Language Basics
16.LINQ
17.Network
18.Office
19.Reflection
20.Regular Expressions
21.Security
22.Services Event
23.Thread
24.Web Services
25.Windows
26.Windows Presentation Foundation
27.XML
28.XML LINQ
C# Book
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source
C# / C Sharp » Development Class » TimerScreenshots 
illustrates the use of the Timer class
illustrates the use of the Timer class

/*
Mastering Visual C# .NET
by Jason Price, Mike Gunderloy

Publisher: Sybex;
ISBN: 0782129110
*/

/*
  Example14_5.cs illustrates the use of the Timer class
*/

using System;
using System.Threading;

public class Example14_5 
{

  // the CheckTime method is called by the Timer
  public static void CheckTime(Object state
  {
    Console.WriteLine(DateTime.Now);
  }

  public static void Main() 
  {

    // create the delegate that the Timer will call
    TimerCallback tc = new TimerCallback(CheckTime);

    // create a Timer that runs twice a second, starting in one second
    Timer t = new Timer(tc, null, 1000500);

    // Wait for user input
    Console.WriteLine("Press Enter to exit");
    int i = Console.Read();

    // clean up the resources
    t.Dispose();
    t = null;

  }

}


           
       
Related examples in the same category
1.Using TimerCallback
2.Demonstrates using the System.Threading.Timer objectDemonstrates using the System.Threading.Timer object
3.Demonstrates using the System.Timers.Timer class 2Demonstrates using the System.Timers.Timer class 2
4.Control ModifierControl Modifier
5.Digital Clock with Date
6.Simple Clock
7.Interval, Tick, Stop
8.Timer.Elapsed
ww_w___.___ja__v__a_2_s___.__co__m_ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.