Hướng dẫn sử dụng lệnh delay (tạm dừng) trong c# Bước 1: thêm thư viện using system.Threading; Bước 2: Code: Thread.Sleep(1000); Ví dụ: CODE: Select All using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Threading;namespace buoi_1{ class Program { static void Main(string[] args) { for (int i = 0; i <= 10; i++) { Console.Write(i + " "); Thread.Sleep(1000); } Console.ReadLine(); } }}