Partager via


Marshaling de délégués comme pointeurs fonction

Mise à jour : novembre 2007

Le tableau suivant affiche des exemples de la façon dont un délégué managé peut être marshalé en pointeur fonction dans le code non managé.

Délégué managé (C#)

Pointeur fonction non managé (C++)

public delegate int EnumDelegate(
  IntPtr hwnd, int LParam);
[DllImport("coredll.dll")] 
static extern int EnumWindows(
  EnumDelegate d,
  Int lParm);
typedef BOOL (* WNDENUMPROC) 
  (HWND, LPARAM);
BOOL EnumWindows(
  WNDENUMPROC lpEnumFunc, 
  LPARAM lParam);
public delegate int EnumDelegate(
  IntPtr hwnd, int lParam);
[DllImport("coredll.dll")]
static extern int EnumWindows(
  [MarshalAs(UnmanagedType.FunctionPtr0]
  EnumDelegate d,
  Int lParam);
typedef BOOL (* WNDENUMPROC) 
  (HWND, LPARAM);
BOOL EnumWindows(
  WNDENUMPROC lpENumFunc,
  LPARAM lParam);

Voir aussi

Autres ressources

Prise en charge du marshaling dans le .NET Compact Framework