Import C ++ dll for windows phone project

I am new to developing Windows phones and I have one problem and I don’t know how to solve it ....

problem...

I have a C ++ project that I executed with Visual C ++ 2010, and this creates one DLL with compiled code ...

so I know that C # imports DLLs, but when I add refrences, it makes this error "Unable to get the full name of the assembly" "Parameter name: AssemblyPath" and I don't know what that means ...

I searched on google and I found one method to import C ++ dll manually using DllImport and calling an external method ... which causes one error because it does not find the dll location ... this is because wp7 does not support C ++ ???

thanks for helping me

+3
source share
3 answers

Neither P / Invoke nor C ++ / CLI is supported, but only managed user code. See social.msdn .

+2
source

Third-party WP7 applications may contain only managed code. C ++ is also not supported by the language, even in a controlled manner, at present.

+1
source

WP7 ++. , , dll ++, .

0

All Articles