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

what is sitemap

3 Answers  


Define the lease of the object?

0 Answers  


What is strong name and what is the need of it ?

1 Answers   Digital GlobalSoft,


What are remotable objects in .NET Remoting?

2 Answers  


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

0 Answers  






What do mean by remotable objects in .net remoting?

0 Answers  


What are the difference between static assemblies and dynamic assemblies?

0 Answers  


Explain marshalling and its types in .net remoting

0 Answers  


What is boxing and unboxing ?

4 Answers   Amdocs, BirlaSoft, TCS,


When should we choose .net remoting over .net web services?

0 Answers  


How can you automatically generate interface for the remotable object in .NET with Microsoft tools?

1 Answers   Tavant Technologies, TCS, Tech Mahindra,


What does manifest consists?

0 Answers  


Categories