Hello, Maestros.
Following on from the posts on creating structs from a byte[].
The methods described there work well. But I seem to have struck a snag that some might find interesting. The C/C++ structs that give problems all have the same issue: they all have at least one field something like this:
char character[25]

There does not appear to be any way to do this in c#. The closest I could get was
fixed...