将数组内存文件C ++共享到C#

时间:2018-11-17 17:41:43

标签: c# c++ visual-c++ c++14

我尝试根据以下示例通过内存文件c ++与c#共享一个数组:stream data from c++ to c# over shared memory。 工作正常,但我只能从数组中获得第3位,另一个位置为0。

创建MemoryFile的C ++

#include <windows.h>
#include <stdio.h>

struct Pair {
    int length;
    int data[10];
};

struct Pair* p;
HANDLE handle;

int dataSend[10]{ 500,33,44,66,2,55,98,7,52,36 };

bool startShare()
{
    try
    {
        handle = CreateFileMappingW(INVALID_HANDLE_VALUE, NULL, PAGE_READWRITE, 0, sizeof(Pair), L"DataSend");
        p = (struct Pair*) MapViewOfFile(handle, FILE_MAP_READ | FILE_MAP_WRITE, 0, 0, sizeof(Pair));
        return true;
    }
    catch (...)
    {
        return false;
    }

}


int main()
{

    if (startShare() == true)
    {
        printf("Memory Create");
        while (true)
        {
            if (p != 0) {


                for (int h = 0; h < 10; h++)
                {
                     p->data[h] = dataSend[h];
                     printf("\n number %d", dataSend[h]);
                }

            }


            else
                puts("create shared memory error");
        }
    }
    if (handle != NULL)
        CloseHandle(handle);
    return 0;
}

我的C#阅读

public static int[] data = new int[10];
public static MemoryMappedFile mmf;
public static MemoryMappedViewStream mmfvs;

static public bool MemOpen()
{
    try
    {
        mmf = MemoryMappedFile.OpenExisting("DataSend");
        mmfvs = mmf.CreateViewStream();
        return true;
    }
    catch
    {
        return false;
    }

}

public static void Main(string[] args)
{
    while (true)
    {
        if (MemOpen())
        {

            byte[] blen = new byte[4];
            mmfvs.Read(blen, 0, 4);

            byte[] bPosition = new byte[280];
            mmfvs.Read(bPosition, 0, 280);
            Buffer.BlockCopy(bPosition, 0, data, 0, bPosition.Length);

            for (int i = 0; i < data.Length; i++)
            {
                Console.WriteLine(data[i]);
            }

        }
    }

}

工作正常,但我只能从数组中获得第3位,另一个位置为0。

更新,代码现在可以正常运行 只是一个细节,我返回一个数组的十六进制值示例:52A7E600 但是在我的代码中,C#会得到像10300071984这样的位数,我如何不能在C#侧转换为相同格式?

1 个答案:

答案 0 :(得分:0)

要在C#中将long值转换为十六进制,可以使用:

        long intValue = 10300071984;
        // Convert long value 10300071984 -> 265EEA030 as a hex in a string variable
        string hexValue = intValue.ToString("X");