c# -Simple and convenient recurrent events example. no timer



  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));

                    i++;
                }
            }).Start();

        }

Yorumlar