我想使用Delphi制作的dll。它有这个功能: function CryptStr(str, Key : AnsiString; DecryptStr : boolean) : AnsiString; 标准调用;
我将 Dll 复制到 /bin/debug 和应用程序根目录中。我的代码是:
[DllImport("Crypt2.dll", EntryPoint = "CryptStr", CallingConvention = CallingConvention.StdCall)]
static extern string CryptStr( string str, string Key, bool DecryptStr);
public string g = "";
private void Form1_Load(object sender, EventArgs e)
{
g=CryptStr("999", "999999", true);
MessageBox.Show(g);
}
我有一些问题: 1. 即使我从那些路径中删除 Dll 应用程序也不会抛出未找到的异常 2. 当应用程序在 g=CryptStr("999", "999999", true); 中运行时 它完成执行并显示表单而不运行 Messagebox 行。我尝试使用 Marshal,但仍然存在上述错误。