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.
我想知道是否可以在我的 Web 应用程序运行时编辑我的 C# 类库代码?ATM,我的 web 应用程序引用了几个类库,所以在测试时,我想快速更改一些东西,看看它如何影响 web 应用程序。
当我尝试编辑代码文件时,我收到消息“代码运行时不允许更改。所以我必须停止整个解决方案,进行更改,重建并重新运行我的 Web 应用程序。有更快的方法吗?
不,C# 类库编译为 DLL,必须通过 CLR 重新编译和处理。这与使用 CSS 和 JavaScript 的 LiveReload 不同。