gpt4 book ai didi

c# - 非托管 C++ 代码上的 NullReferenceException

转载 作者:搜寻专家 更新时间:2023-10-31 02:20:29 27 4
gpt4 key购买 nike

我有一个 C++ DLL,我需要在 may c# 项目中使用它。

这是我的代码的重要部分:

public static class MTSCRA_API
{
[UnmanagedFunctionPointer(CallingConvention.StdCall)]
public delegate void DataReceiveDelegate([MarshalAsAttribute(UnmanagedType.LPStr)]String x);

//More methods....

[DllImport("MTSCRA.dll", CallingConvention = CallingConvention.StdCall, CharSet = CharSet.Auto, SetLastError = true)]
public static extern void OnDeviceConnectionStateChanged(IntPtr lpFuncNotify);

}

我在哪里使用它:

public void Open()
{
if (!MTSCRA_API.IsDeviceConnected())
{
UInt32 result = MTSCRA_API.OpenDevice("");
if (result == 0)
{
MTSCRA_API.OnDataReceived(
Marshal.GetFunctionPointerForDelegate(
new Kiosk.Hardware.CardReaderMagTek.MTSCRA_API.DataReceiveDelegate(CardReaderMagTek_OnCardDataReceived)));
}
}
}

Mutex mutex = new Mutex();
void CardReaderMagTek_OnCardDataReceived(String info)
{
try
{
//Do stuff
}
catch(Exception ex)
{

}
finally
{
mutex.ReleaseMutex();
}
MTSCRA_API.ClearCardData();
info = null;

}

每次我在设备中刷卡时,都会调用 CardReaderMagTek_OnCardDataReceived() 事件。

Open() 方法被执行,事件 CardReaderMagTek_OnCardDataReceived() 被调用,但只有 9 次。 10º 代码崩溃并出现 NullReferenceException 而没有进入事件,我无权访问调用堆栈...

谁知道可能是什么问题?

最佳答案

MTSCRA_API.OnDataReceived(
Marshal.GetFunctionPointerForDelegate(
new Kiosk.Hardware.CardReaderMagTek.MTSCRA_API.DataReceiveDelegate(
CardReaderMagTek_OnCardDataReceived)
)
);

您没有让您的代理人活着。您创建一个 DataReceiveDelegate 实例并将其传递给 GetFunctionPointerForDelegate。但在 GetFunctionPointerForDelegate 返回后,委托(delegate)没有理由保持事件状态。在某个时候它会被收集。

只要非托管函数需要能够调用它,就将委托(delegate)保存在托管变量中。

关于c# - 非托管 C++ 代码上的 NullReferenceException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32650626/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com