c# – 在Mac上的.NET Core中的Thread.Sleep()

前端之家收集整理的这篇文章主要介绍了c# – 在Mac上的.NET Core中的Thread.Sleep()前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在Mac机器上使用.NET Core.

在我的代码中,我想使用这段代码

System.Threading.Thread.Sleep(100);

但是在System.Threading命名空间中找不到Thread.

怎么了?不是线程可用于Mac,还是我缺少的东西?

解决方法

Isn’t Thread available for Mac?

还没有:https://github.com/dotnet/corefx/issues/2576

The current System.Threading.Thread (and System.Threading.ThreadPool) packages only support desktop and CoreCLR.

和:https://github.com/dotnet/corefx/issues/2576#issuecomment-187184341

I can see that the latest System.Threading.Thread package in the dotnet-core NuGet Feed hasn’t changed this picture.

原文链接:https://www.f2er.com/netcore/94320.html

猜你在找的.NET Core相关文章