I am trying to create a 'constructor' for this C# struct (initial attempt included):
[StructLayout(LayoutKind.Sequential)]
public struct emxArray_real_T
{
public IntPtr data;
public IntPtr size;
public int allocatedSize;
public int numDimensions;
[MarshalAs(UnmanagedType.U1)]
public bool canFreeData;
public emxArray_real_T(double[] cSharpData)
{
var arraySize = Marshal.SizeOf(cSharpData[0]) * cSharpData.Length;
this.data = Marshal.AllocHGlobal(arraySize);
// ????
numDimensions = 1;
canFreeData = false;
}
}
The C corresponding C struct looks like this:
typedef struct emxArray_real_T
{
real_T *data;
int32_T *size;
int32_T allocated;
int32_T numDimensions;
boolean_T canFreeData;
} emxArray_real_T;
and is explained here.
Looking forward to any comments/answers. Thanks!