Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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

Difference between web services & remoting?

0 Answers  


What do mean by remotable objects in .net remoting?

0 Answers  


Write a example code for remoting?

0 Answers  


What are the differences between Marshal by value and Marshal by reference?

4 Answers   Verizon,


What is unmanaged code and will CLR handle this kind of code or not ?

1 Answers   DELL,


Explain the hierarchial description of remoting?

0 Answers  


How can you debug failed assembly binds?

1 Answers  


Explain what is the relationship between a Process, Application Domain, and Application?

2 Answers  


Can you configure a .NET Remoting object via XML file?

1 Answers   Tavant Technologies,


what is sitemap

3 Answers  


What is unmanaged code?

0 Answers  


Can we configure a .net remoting object via xml file?

0 Answers  


Categories