c# -Simple and convenient recurrent events example. no timer
Bağlantıyı al
Facebook
X
Pinterest
E-posta
Diğer Uygulamalar
static void Main(string[] args)
{
new Thread(delegate () {
int i = 1;
while (i <= 4)
{
Console.WriteLine(System.DateTime.Now.ToString());
Thread.Sleep(TimeSpan.FromSeconds(10));
Yorumlar
Yorum Gönder