简体   繁体   English

如何将 C++ struct 数组编组为 C#

[英]How to marshall C++ struct array into C#

I plan to marshall a c++ struct array into c# and I tried a lot of methods to do it but the array that the function returns is an empty array all the time.我计划将一个 c++ 结构数组编组到 c# 中,我尝试了很多方法来做到这一点,但函数返回的数组始终是一个空数组。 I don't know what the problem is.我不知道是什么问题。 Here is my c++ code:这是我的 C++ 代码:

# include<iostream>
typedef  struct
{
    float x, y, z;
}cfloat3;

extern "C" __declspec(dllexport)  cfloat3* Test();
extern "C" __declspec(dllexport)  void freeMemory(cfloat3 * a);

cfloat3* Test()
{
    cfloat3* a = new cfloat3[5];
    for (int i = 0; i < 5; i++)
    {
        a[i].x = 1;
        a[i].y = 1;
        a[i].z = 1;
    }
    return a;
}
void freeMemory(cfloat3* a)
{
    delete[] a;
}

and here is my c# code这是我的 C# 代码

namespace ConsoleApp3
{
    [StructLayout(LayoutKind.Sequential)]
    struct cfloat3
    {
        public float x, y, z;
    }
    class Program
    {
        [DllImport("Dll1.dll", EntryPoint = "Test")]
        public static extern IntPtr Test();

        [DllImport("Dll1.dll", EntryPoint = "freeMemory")]
        public static extern void freeMemory( IntPtr a);
        static void Main(string[] args)
        {

            int length = 5;
            int size = Marshal.SizeOf(typeof(cfloat3)) * length;

            IntPtr pBuff = Marshal.AllocHGlobal(size);
            cfloat3[] pClass = new cfloat3[length];
            pBuff=Test();

            IntPtr[] bb = new IntPtr[length];
            Marshal.Copy(pBuff, bb, 0, length);

            for (int i = 0; i < length; i++)
            {
                pClass[i] = (cfloat3)Marshal.PtrToStructure(bb[i],typeof(cfloat3));

                Console.WriteLine(pClass[i].x);
                Console.WriteLine(pClass[i].y);
                Console.WriteLine(pClass[i].z);

            }
            Marshal.FreeHGlobal(pBuff);
            Console.ReadKey();
        }
    }
}

Run this program, I get "System.AccessViolationException: Attempted to read or write protected memory. This is often an indication that other memory is corrupt."运行这个程序,我得到“System.AccessViolationException: Attempted to read or write protected memory。这通常表明其他内存已损坏。”

You need to use MarshalAs annotation with SizeConst in each field and return type of the C# individually mapped to c++ struct and return type您需要在每个字段中使用带有SizeConst MarshalAs注释, SizeConst C# 的返回类型分别映射到 C++ 结构和返回类型

Please refer this answer Marshaling C++ struct to C#请参考这个答案Marshaling C++ struct to C#

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM