B
Bruce.Chenhj
Um,i search the problem through the internet.There is a code in *.cs:
using System.Runtime.InteropServices;
[DllImport("Test.DLL", EntryPoint="TestOne")]
public static extern bool TestOne(string src);
So,we can call the TestOne function.
But there is no DllImport() funtion,so can't execute the code.
Can someone tell me how can i do?
Thanks
Bruce Chen
using System.Runtime.InteropServices;
[DllImport("Test.DLL", EntryPoint="TestOne")]
public static extern bool TestOne(string src);
So,we can call the TestOne function.
But there is no DllImport() funtion,so can't execute the code.
Can someone tell me how can i do?
Thanks
Bruce Chen