作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
SynchronizationContext.Current
在主线程上为 null,我很难弄清楚这一点。
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main(string[] args)
{
var ctx = System.Threading.SynchronizationContext.Current;
// ctx is null here
}
}
我在 .NET 4.6.1 上运行。它是一个混合的 Winforms 和 WPF 应用程序。入口点是 WinForms。以下是此类证据的一些屏幕截图:
它也与 this 等帖子无关因为我使用的是较新的 .NET 版本,而且似乎提到的问题已经修补。还有其他好的想法吗?
最佳答案
当您的应用程序的入口点 (Main
) 被命中时,当然没有可用的 SynchronizationContext
。您需要等待框架对其进行初始化。
在 Windows 窗体应用程序中,这会在创建第一个窗体时发生。因此只有在 Application.Run
方法被调用后,SynchronizationContext.Current
属性才会真正返回一个同步上下文。
关于c# - SynchronizationContext.Current 在主线程上为空,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45054201/
有人可以向我澄清主线 DHT 规范中的声明吗? Upon inserting the first node into its routing table and when starting up th
我正在尝试使用 USB 小工具驱动程序使嵌入式设备作为 MTP 设备工作。 我知道 Android 从大容量存储设备切换到 MTP 设备已经有一段时间了,并且找到了 source code for M
我是一名优秀的程序员,十分优秀!