1

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

4

1 回答 1

3

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

using Org.BouncyCastle.Crypto;

代替:

using BouncyCastle.Crypto;
于 2013-09-28T16:03:18.093 回答