在C#中調用外部函數可以使用DllImport屬性來引入外部函數的定義。以下是一個簡單的示例:
using System;
using System.Runtime.InteropServices;
class Program
{
[DllImport("user32.dll")]
public static extern int MessageBox(IntPtr hWnd, string text, string caption, uint type);
static void Main()
{
MessageBox(IntPtr.Zero, "Hello World!", "MessageBox Example", 0);
}
}
在上面的示例中,我們通過DllImport屬性引入了user32.dll中的MessageBox函數,并在Main方法中調用了該函數。