Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试从与主线程不同的线程关闭我的 C# Form 应用程序。我总是收到此错误:Program.cs 主行的 mscorlib.dll 中发生“System.Reflection.TargetParameterCountException”:
Application.Run(new Im_SecurityCenter(args));
我已经尝试通过 this.BeginInvoke(ShutdownDelegate) 并使用调度程序来完成它,但总是出现相同的错误。
该异常表明 Invoke 调用存在问题。
使用 Threads 窗口查找异常的真正来源。引用的行不是来源。
确保被调用的后期绑定方法具有与传入 .Invoke 相同数量的参数