Dot Net Remoting Question: Download Dot Net Remoting PDF

How to directly call a native function exported from a DLL?

Tweet Share WhatsApp

Answer:

Yes we can call a native function exported from a Dll in
the following way,
I used C#.Net for Coding.

Add a Namespace that "System.Runtime.InteropServices"

Then use the following code,

Syntax:
[DllImport("dllname")]
here place the function in "dllname" Dll.

Download Dot Net Remoting PDF Read All 26 Dot Net Remoting Questions
Previous QuestionNext Question
Can we configure a .NET Remoting object via XML file?How does assembly versioning in .NET prevent DLL Hell?