I get the following error:
ArgumentException was unhandled Type could not be marshaled because the length of an embedded array instance does not match the declared length in the layout.
On line Marshal.StructureToPtr(msg, buff, true
public static Byte[] SerializeMessage<T>(T msg) where T : struct
{
int objsize = Marshal.SizeOf(typeof(T));
Byte[] ret = new Byte[objsize];
IntPtr buff = Marshal.AllocHGlobal(objsize);
Marshal.StructureToPtr(msg, buff, true);
Marshal.Copy(buff, ret, 0, objsize);
Marshal.FreeHGlobal(buff);
return ret;
}
The following is the structs I try and use:
[StructLayout(LayoutKind.Sequential, Pack = 1)]
struct MsgStruct
{
public uint result;
public DS.DataSvcMetZoneDataC zone;
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 240)]
public Types.GeographicLocationType[] geoLocation;
static public MsgStruct NewMsgStruct()
{
MsgStruct retValue = new MsgStruct();
retValue.geoLocation = new Types.GeographicLocationType[10];
for (int i = 0; i < 10; i++)
{
retValue.geoLocation[i] = Types.GeographicLocationType.NewMsgStruct();
}
return retValue;
}
}
and
[StructLayout(LayoutKind.Sequential, Pack = 1)]
public struct GeographicLocationType
{
public double altitude;
public double latitude;
public double longitude;
static public GeographicLocationType NewMsgStruct()
{
GeographicLocationType structType = new GeographicLocationType();
return structType;
}
}
and
[StructLayout(LayoutKind.Sequential, Pack = 1)]
public struct DataSvcMetZoneDataC
{
public int metID;
public ushort zoneNumber;
public ushort isDefined;
public double windDirection;
public double windSpeed;
public double airTemperature;
public double airPressure;
public ulong dataModifiedInd;
static public DataSvcMetZoneDataC NewMsgStruct()
{
DataSvcMetZoneDataC structType = new DataSvcMetZoneDataC();
return structType;
}
}
I get it to work when I don't have an array of positions but naming them 1....10 seems like a bad solution for something that should be able to work easily with an array.