Marshal C++ struct array into C#

71,039

Solution 1

I would try adding some attributes to your struct decloration

[StructLayout(LayoutKind.Sequential, Size=TotalBytesInStruct),Serializable]
public struct LPRData
{
/// char[15]
[MarshalAsAttribute(UnmanagedType.ByValTStr, SizeConst = 15)]
public string data;

/// int[15]
[MarshalAsAttribute(UnmanagedType.ByValArray, SizeConst = 15)]
public int[] prob;
}

*Note TotalBytesInStruct is not intended to represent a variable

JaredPar is also correct that using the IntPtr class could be helpful, but it has been quite awhile since I have used PInvoke so I'm rusty.

Solution 2

One trick when dealing with pointers is to just use an IntPtr. You can then use Marshal.PtrToStructure on the pointer and increment based on the size of the structure to get your results.

static extern void GetData([Out] out IntPtr ptr);

LPRData[] GetData()
{
    IntPtr value;
    LPRData[] array = new LPRData[3];
    GetData(out value);
    for (int i = 0; i < array.Length; i++)
    {
        array[i] = Marshal.PtrToStructure(value, typeof(LPRData));
        value += Marshal.SizeOf(typeof(LPRData));
    }
    return array;
}

Solution 3

A similar topic was discussed on this question, and the one of the conclusions was that the CharSet named parameter must be set to CharSet.Ansi. Otherwise, we would be making a wchar_t array instead of a char array. Thus, the correct code would be as follows:

[Serializable]
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
public struct LPRData
{
    [MarshalAsAttribute(UnmanagedType.ByValTStr, SizeConst = 15)]
    public string data;

    [MarshalAsAttribute(UnmanagedType.ByValArray, SizeConst = 15)]
    public int[] prob;
}

Solution 4

The PInvoke Interop Assistant may help. http://clrinterop.codeplex.com/releases/view/14120

Solution 5

Did you mark GetData parameter with OutAttribute?

Combining the InAttribute and OutAttribute is particularly useful when applied to arrays and formatted, non-blittable types. Callers see the changes a callee makes to these types only when you apply both attributes.

Share:
71,039
Miguel Ventura
Author by

Miguel Ventura

Updated on July 20, 2020

Comments

  • Miguel Ventura
    Miguel Ventura almost 4 years

    I have the following struct in C++:

    #define MAXCHARS 15
    
    typedef struct 
    {
        char data[MAXCHARS];
        int prob[MAXCHARS];
    } LPRData;
    

    And a function that I'm p/invoking into to get an array of 3 of these structures:

    void GetData(LPRData *data);
    

    In C++ I would just do something like this:

    LPRData *Results;
    Results = (LPRData *)malloc(MAXRESULTS*sizeof(LPRData));
    GetData( Results );
    

    And it would work just fine, but in C# I can't seem to get it to work. I've created a C# struct like this:

    public struct LPRData
    {
    
        /// char[15]
        [MarshalAsAttribute(UnmanagedType.ByValTStr, SizeConst = 15)]
        public string data;
    
        /// int[15]
        [MarshalAsAttribute(UnmanagedType.ByValArray, SizeConst = 15)]
        public int[] prob;
    }
    

    And if I initialize an array of 3 of those (and all their sub-arrays) and pass it into this:

    GetData(LPRData[] data);
    

    It returns with success, but the data in the LPRData array has not changed.

    I've even tried to create a raw byte array the size of 3 LPRData's and pass that into a function prototype like this:

    GetData(byte[] data);

    But in that case I will get the "data" string from the very first LPRData structure, but nothing after it, including the "prob" array from the same LPRData.

    Any ideas of how to properly handle this?