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.
我正在查看从这里找到的代码。当我在 vs12 中打开下载的源代码项目时,一切正常。但是当我将类复制到我自己的项目中时,下面会出现一个错误(红色波浪线)
WIA.ImageFile image = (WIA.ImageFile)wiaCommonDialog.ShowTransfer(item, wiaFormatBMP, false);
据我所知,所有参考资料都已添加。错误描述是:“找不到编译动态表达式所需的一种或多种类型。您是否缺少参考?”
知道为什么会发生这种情况以及如何解决吗?
在您复制/粘贴代码的地方,确保.Net Framework该项目的目标是4.0 or above (4.5).
.Net Framework
4.0 or above (4.5)
编辑
尝试编译在 .NET 中使用动态类型的解决方案时,您会收到此错误。System.Core.dll如果您使用的是 Visual Studio,您的项目极不可能缺少对的引用。这通常发生在项目没有引用Microsoft.CSharp.dll. 将此引用添加到引用文件夹并重新编译。
System.Core.dll
Microsoft.CSharp.dll