我正在尝试从 c# 中完成这项工作:
C头文件:
typedef void (LogFunc) (const char *format, va_list args);
bool Init(uint32 version, LogFunc *log)
C#实现:
static class NativeMethods
{
[DllImport("My.dll", SetLastError = true)]
internal static extern bool Init(uint version, LogFunc log);
[UnmanagedFunctionPointer(CallingConvention.Cdecl, SetLastError = true)]
internal delegate void LogFunc(string format, string[] args);
}
class Program
{
public static void Main(string[] args)
{
NativeMethods.Init(5, LogMessage);
Console.ReadLine();
}
private static void LogMessage(string format, string[] args)
{
Console.WriteLine("Format: {0}, args: {1}", format, DisplayArgs(args));
}
}
这里发生的是对NativeMethods.Init
回调的调用LogMessage
并将来自非托管代码的数据作为参数传递。这适用于参数是字符串的大多数情况。但是,有一个调用格式为:
为版本 %d 加载插件 %s。
并且 args 仅包含一个字符串(插件名称)。它们不包含版本值,这是有道理的,因为我string[]
在委托声明中使用了。问题是,我应该如何编写委托来获取字符串和 int?
我尝试使用object[] args
并得到此异常:
在从非托管 VARIANT 转换为托管对象期间检测到无效的 VARIANT。将无效的 VARIANT 传递给 CLR 可能会导致意外异常、损坏或数据丢失。
编辑:我可以将委托签名更改为:
internal delegate void LogFunc(string format, IntPtr args);
我可以解析格式并找出期望的参数数量和类型。例如,对于版本 %d 的已加载插件 %s。我希望有一个字符串和一个整数。有没有办法从 IntPtr 中取出这两个?