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.
我正在编写一个引用内部库的应用程序,我需要从库中调用方法,返回到应用程序中。我不能“添加引用”,因为这将以循环依赖结束。因此,我如何从库中引用此方法?
这是 .NET 编程中非常常见的场景。例如,按钮控件不知道当用户单击它时应该运行什么代码。
使用委托或事件。