4


我正在使用 NetMQ 进行进程间数据通信。
我在 .Net 4.5 上使用 NuGet 包版本 3.3.2.2
我想从字符串创建一个简单的消息并将其发送到RequestSocket.

System.ArgumentNullException尽管在任何时候都没有实例为空,但我不断得到。

我的自包含代码:

static void Main(string[] args)
{
    string exampleString = "hello, world";

    byte[] bytes = new byte[exampleString.Length * sizeof(char)];
    if (bytes == null)
    {
        return;
    }

    System.Buffer.BlockCopy(exampleString.ToCharArray(), 0, bytes, 0, bytes.Length);

    var clientMessage = new NetMQ.Msg();
    clientMessage.InitEmpty();

    if (!clientMessage.IsInitialised)
    {
        return;
    }

    clientMessage.Put(bytes, 0, bytes.Length); //throws exception!

}
4

1 回答 1

2

当你打电话给Put它时Buffer.BlockCopy(src, 0, Data, i, len);

来自github

public void Put([CanBeNull] byte[] src, int i, int len)
{
    if (len == 0 || src == null)
        return;

    Buffer.BlockCopy(src, 0, Data, i, len);
}

在这一点DatanullBuffer.BlockCopy抛出ArgumentNullException

尝试通过调用InitPool或来初始化它InitGC

于 2016-03-23T09:56:08.973 回答