Return to dot NET, Foreign Function Interface (FFI)
P/Invoke (Platform Invoke) is a technology in the .NET framework that enables managed code (written in languages like C# or VB.NET) to call unmanaged functions implemented in native libraries, typically written in C or C++. It provides a way to bridge the gap between the managed and unmanaged worlds, allowing .NET applications to access functionality not natively available within the .NET framework.
```csharp using System.Runtime.InteropServices;
class Example {
// Declare the native function [DllImport("user32.dll", CharSet = CharSet.Unicode)] public static extern int MessageBox(IntPtr hWnd, string text, string caption, uint type);
static void Main() { // Call the native function MessageBox(IntPtr.Zero, "Hello from P/Invoke!", "Message", 0); }} ```
In this example, `DllImport` attribute specifies the DLL name (`user32.dll`) and character set (`CharSet.Unicode`). The `MessageBox` function is declared with its parameters and return type. The `Main` method calls the `MessageBox` function to display a message box.