Elapsed Olayı

Bu makalemizde elapsed olayına değineceğiz. Elapsed ile geçen süreyi ekrana yazdıracağız.

İlk önce New Project > ConsoleApplication açınız. Aşağıdaki kodları ormunuza yazınız. Şekli inceleyin.



Şekil 1

using System;
using System.Collections.Generic;
using System.Text;
using System.Timers;

namespace gecensure
{
class Program
{
static void Main(string[] args)
{
Timer t = new Timer(1000);
t.Elapsed += new ElapsedEventHandler(zaman);
t.Elapsed += new ElapsedEventHandler(mesaj);
t.Start();
Console.ReadLine();

}
static void zaman(object o, ElapsedEventArgs a)
{

Console.WriteLine(DateTime.Now);

}
static void mesaj(object o, ElapsedEventArgs a)
{

Console.WriteLine("Geçen Süre:");

}
}
}

//Bir sonraki makalede görüşmek üzere. Bahadır ŞAHİN

About Bahadır Şahin

This is a short description in the author block about the author. You edit it by entering text in the "Biographical Info" field in the user admin panel.

0 comments:

Öne Çıkan Yayın

GridView da Seçili Satırı DetailsView da Göstermek

Merhaba arkadaşlar bu makalemizde GridView nesnesi ile birlikte DetailsView nesanesini birlikte kullanacağız. GridView da seçili satırın de...