我正在尝试在我的项目中使用Bouncy Castle dll。当我将它添加到我的引用时,我无法使用它,当我编写这段代码时:
using BouncyCastle.Crypto;
我面对这个错误:
The type or namespace name 'BouncyCastle' could not be found (are you missing a using directive or an assembly reference?)
我该怎么办?
答案 0 :(得分:3)
我已经检查了Micheal,你应该这样写:
using Org.BouncyCastle.Crypto;
而不是:
using BouncyCastle.Crypto;