我想要使用班级ThreadPoolTimer
。但是我收到了错误
“错误CS0246:类型或命名空间名称'ThreadPoolTimer'不能 找到“。
以下是我的代码:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace learning
{
static void Main(string[] args)
{
......
ThreadPoolTimer Timer = ThreadPoolTimer.CreateTimer(() =>
{
try
{
Console.WriteLine("Ready to delay 5s");
await Task.Delay(5000);
}
catch (Exception ex)
{
Console.WriteLine(ex.ToString());
}
}, delay);
......
}