dll在visual studio 2010中使用问题

时间:2013-09-28 15:29:19

标签: c# visual-studio-2010 bouncycastle

我正在尝试在我的项目中使用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?) 我该怎么办?

1 个答案:

答案 0 :(得分:3)

我已经检查了Micheal,你应该这样写:

using Org.BouncyCastle.Crypto;

而不是:

using BouncyCastle.Crypto;