How do you directly call a native function exported from a
DLL?

Answers were Sorted based on User's Feedback



How do you directly call a native function exported from a DLL?..

Answer / santhanakumar

HERE IS THE CODE EXAMPLE :

using System.Runtime.InteropServices; \
class C
{
[DllImport("user32.dll")]
public static extern int MessageBoxA(int h, string
m, string c, int type);
public static int Main()
{
return MessageBoxA(0, “Hello
World!”, “Caption”, 0);
}
}

Is This Answer Correct ?    3 Yes 0 No

How do you directly call a native function exported from a DLL?..

Answer / moghan

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.

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More Dot Net Remoting Interview Questions

In which conditions do you opt for Remoting services?

8 Answers   Manland, Tech Mahindra,


What are static assemblies?

0 Answers  


What?s SingleCall activation mode used for?

1 Answers  


Types of compatabilities and explain them ?

0 Answers   DELL,


Explain the differences between marshal by value and marshal by reference?

0 Answers  






What are the types of remoting?

0 Answers  


What?s Singleton activation mode?

3 Answers  


What are remotable objects in .NET Remoting?

2 Answers  


What are the different types of channels used by .net remoting and which is the best one?

0 Answers  


What is the purpose of strong name?

0 Answers  


How do you reference to a private & shared assembly ?

1 Answers   Digital GlobalSoft,


What technology enables out-of-proc communication in .NET ?

1 Answers  


Categories