"Representing GetFuncPtr() in C#"

public static class NativeMethods {
	[DllImport("NativeLib.dll", CallingConvention = CallingConvention.Cdecl)]
	public static unsafe extern void GetFuncPtr(delegate* unmanaged<char*>* outFuncPtr);
}


Code snippet taken from "Complete C# Quick Reference - C# 9".