I have this doubt ..
I have a C++
library dll and I am writing in my c#
web service.
I should call my web service a method of this dll.
for example using:
[DllImport ("mydll.dll")]
....
but how the type mappings? For example, If That library dll function pointers?
Import and calls the dll adds a overead significant as regards the perdformance?
it may be desirable from the point of view of performance write the web service in C++
?
using c#
I think it's much faster to implement.