Visual Studio 2010 中的 DLL 使用问题
本文关键字:问题 DLL 中的 Studio 2010 Visual | 更新日期: 2023-09-27 18:33:19
我正在尝试在我的项目中使用Bouncy Castel dll。当我将其添加到我的引用中时,我无法使用它,当我编写此代码时:
using BouncyCastle.Crypto;
我面临此错误: The type or namespace name 'BouncyCastle' could not be found (are you missing a using directive or an assembly reference?)
我该怎么办?
我已经检查过了,米歇尔,你应该写这个:
using Org.BouncyCastle.Crypto;
而不是:
using BouncyCastle.Crypto;