S
Saurabh Chawla
Hi,
I am working on smartphone emulator. with generating dll on evc++4.0.
The code that i have written is :
[DllImport("abc.dll",SetLastError=true)]
public static extern int check(int A);
and called check function in my code c#.
Also , i have checked through dumpbin utility that the check function
is exposed in abc.dll.
In the emulator i am making abc.dll as a content file. so it is loaded
at the location of the application.CHecked that as well.
Still the error MissingMethodException is coming. Can anyone tell me
the reason for that.
I also tried making separate dll for emulator(x86 based) and
device(arm based), no use.
I am working on smartphone emulator. with generating dll on evc++4.0.
The code that i have written is :
[DllImport("abc.dll",SetLastError=true)]
public static extern int check(int A);
and called check function in my code c#.
Also , i have checked through dumpbin utility that the check function
is exposed in abc.dll.
In the emulator i am making abc.dll as a content file. so it is loaded
at the location of the application.CHecked that as well.
Still the error MissingMethodException is coming. Can anyone tell me
the reason for that.
I also tried making separate dll for emulator(x86 based) and
device(arm based), no use.