我正在使用 C# 调用 DLL 函数。
[DllImport("MyDLL.dll", SetLastError = true)]
public static extern uint GetValue(
pHandle handle,
ref somestruct a,
ref somestruct b);
如何传递null
参数 3 的引用?
当我尝试时,我收到一个编译时错误:
无法将 from 转换
<null>
为 ref somestruct。
我也试过了IntPtr.Zero
。