标签: c# .net-assembly
我试图像多年以来对所有库所做的那样,从应用程序资源中加载newtonsoft.json.dll,但是对于newtonsoft.json.dll,我却遇到了堆栈溢出异常,因为Assembly.Load(data) (数据为byte [])导致AppDomain.CurrentDomain.AssemblyResolve再次触发,要求newtonsoft.json.dll有人遇到过类似的事情吗?
newtonsoft.json.dll
Assembly.Load(data)
AppDomain.CurrentDomain.AssemblyResolve
答案 0 :(得分:0)
我必须重建资源并手动清理项目才能使其正常工作。