[求助]DllImport的一个问题
[DllImport("Format.dll",EntryPoint="str")]public static extern void str (string []arges);
protected void Button1_Click(object sender, EventArgs e)
{
string []ab=new string [5];
ab[0]="12{0}2";
ab[1] = "55";
str(ab);
Response.Write(ab);
}
无法在 DLL“Format.dll”中找到名为“str”的入口点。这是为什么?
如果用工具添加format.dll引用的话,Response.write(Format.Format.str(ab));是可以的.