标签: c# exception backgroundworker dispatcher
我在backgroundWorker主题中有这一行:
Dispatcher.CurrentDispatcher.BeginInvoke((Action)(() => this.Network.Nodes.Add(node))).Wait();
我从中获得异常InvalidOperationException。
答案 0 :(得分:0)
我会想象
BeginInvoke(...).Wait()
将会死锁。请尝试使用Invoke。
Invoke