Tagged Questions
3
votes
3answers
501 views
structs using FieldOffset unexpected behaviour
I am trying to understand explicit struct layout and struct overlaying and i am not seeing behaviour i expect. Given the code below:
class Program
{
static void Main(string[] args)
{
...
3
votes
7answers
2k views
Is there an alternative for StructLayout “Pack” attribute in Compact Framework?
I would like to do the following:
[StructLayout(LayoutKind.Sequential, Pack = 1)]
public struct SomeStruct
{
public byte SomeByte;
public int SomeInt;
public short SomeShort;
...
1
vote
2answers
169 views
Shoud I use LayoutKind.Auto for my structs if they don't perform in COM Interop?
By default structs in C# are implemented with [StructLayout( LayoutKind.Sequential )] for reasons basically stating that these type of objects are commonly used for COM Interop and their fields must ...