有一个烦人的问题,尽管我已经建立了一堂课并在以下客户程序中引用了它 - 随着使用,编译器希望我方法的完全合格的名称。
// this doesn't compile because it does not recognize the Decrypt method
using PGPEncryptDecrypt.Helpers.PGP;
namespace TestComInterOpPGP
{
class Program
{
static void Main(string[] args)
{
PGPEncryptDecrypt.Decrypt(@"C:Usersblah.pgp",
@"C:Userssecring.gpg",
"pwd",
@"C:Usersout.txt");
}
}
}
必须完全限定
// this does compile
using PGPEncryptDecrypt.Helpers.PGP;
namespace TestComInterOpPGP
{
class Program
{
static void Main(string[] args)
{
PGPEncryptDecrypt.Helpers.PGP.PGPEncryptDecrypt.Decrypt(@"C:Usersblah.pgp",
@"C:Userssecring.gpg",
"pwd",
@"C:Usersout.txt");
}
}
}
ahh-在键入此内容时,我意识到问题是PGPENCRYPTDECRYPT类的名称与命名空间的第一部分相同。因此,我只是改变了一个或另一个,不需要完全符合条件。也许这会帮助某人!