2013-09-28 140 views
1

我正在尝试在我的项目中使用Bouncy Castel dll。当我把它添加到我引用我不能使用它,当我写这篇文章的代码:在Visual Studio 2010中使用dll问题

using BouncyCastle.Crypto; 

我面对这个错误: The type or namespace name 'BouncyCastle' could not be found (are you missing a using directive or an assembly reference?) 我应该怎么办?

回答

3

我已经检查了迈克尔,你应该这样写:而不是

using Org.BouncyCastle.Crypto; 

using BouncyCastle.Crypto; 
+0

谢谢大家一个十亿。 –