Why does LayoutKind.Sequential work differently if a struct contains a DateTime field?
Consider the following code (a console app which must be compiled with "unsafe" enabled):
using System;
using System.Runtime.InteropServices;
namespace ConsoleApplication3
{
static class Program
{
static void Main()
{
Inner test = new Inner();
unsafe
{
Console.WriteLine("Address of struct = " + ((int)&test).ToString("X"));
Console.WriteLine("Address of First = " + ((int)&test.First).ToString("X"));
Console.WriteLine("Address of NotFirst = " + ((int)&test.NotFirst).ToString("X"));
}
}
}
[StructLayout(LayoutKind.Sequential)]
public struct Inner
{
public byte First;
public double NotFirst;
public DateTime WTF;
}
}
Now if I run the code above, I get output similar to the following:
Address of struct = 40F2CC
Address of First = 40F2D4
Address of NotFirst = 40F2CC
Note that the address of First is NOT the same as the address of the struct; however, the address of NotFirst is the same as the address of the struct.
Now comment out the "DateTime WTF" field in the struct, and run it again.
This time, I get output similar to this:
Address of struct = 15F2E0
Address of First = 15F2E0
Address of NotFirst = 15F2E8
Now "First" does have the same address as the struct.
I find this behaviour surprising given the use of LayoutKind.Sequential. Can anyone provide an explanation? Does this behaviour have any ramifications when doing interop with C/C++ structs that use the Com DATETIME type?
[EDIT] NOTE: I have verified that when you use Marshal.StructureToPtr() to marshal the struct, the data is marshalled in the correct order, with the "First" field being first. This seems to suggest that it will work fine with interop. The mystery is why the internal layout changes - but of course, the internal layout is never specified, so the compiler can do what it likes.
[EDIT2] Removed "unsafe" from struct declaration (it was leftover from some testing I was doing).
[EDIT3] The original source for this question was from the MSDN C# forums:
http://social.msdn.microsoft.com/Forums/en-US/csharplanguage/thread/fb84bf1d-d9b3-4e91-823e-988257504b30
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…