C# managed dll call or unmanaged dll call? -
I was telling my application to call two dll
these two DLS
from other groups and other companies have read a little about the managed and unmanaged I would like to call managed calls. But is managed or unmanaged use only a decision to call or it also depends on Cali? All DLLs can be called with managed code? If the colt is also a factor, how will I know that this DLL can be called with managed code?
If DLL is written in the managed code, it will be a managed call. Otherwise you will have to do an unmanaged call. Manage both parts to be a managed call.
Comments
Post a Comment