[DllImport("user32", EntryPoint="ShowCursor")]

解决方案 »

  1.   

    namespace APIExample
    {
    using System;
    // Must refernce this library to use PI nvoke types
    using System.Runtime.InteropServices;
    public class PinvokeClient
    {
    [DllImport("user32")]
    public static extern int MessageBox(int hWnd, 
    String pText ,
    String pCaption ,
    int uType);
    public static int Main(string[] args)
    {
    String pText = "HELLO INDIA!!";
    String pCaption = "Example by Arungg";
    MessageBox(0,pText,pCaption,0);
    return 0;
    }
    }
    }Explanation:Before calling a C-style Dll we have to declare the function to call using the static and extern C# keywords. After this you have to specify the name of the raw DLL that contain the function you are attempting to call,as shown here.[DllImport("user32")]
    public static extern int MessageBox(.......);After declare the DLL Pass the arguments such as pText,pCaption.It should be clear that it does not matter in which order you specify the values.
    In the above way one can use .Net types calling any type of raw C DLLs (Win32 API).This comes to an end of Part1 and I think the users now know how to call a raw C DLLs (Win32 API) using PInvoke in .NET.This is an end of Part1.