Tagged Questions
2
votes
2answers
4k views
C# StructLayout.Explicit Question
I'm trying to understand why the second example below works with no issues, but the first example gives me the exception below. It seems to me that both examples should give an exception based on the ...
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 ...