using System; using System.Runtime.InteropServices; public class Test { [StructLayout(LayoutKind.Sequential, Size=32)] public class TestStruct1 { public int a; } [StructLayout(LayoutKind.Sequential, Size=32)] public class TestStruct2 { [MarshalAs(UnmanagedType.ByValTStr, SizeConst=16)] public string a; public int b; } [StructLayout(LayoutKind.Sequential, Size=32)] public class TestStruct3 : TestStruct2 { public int c; } public unsafe static int Main () { /// /// Testing simple struct size /// if(Marshal.SizeOf(typeof(TestStruct1)) != 32) { return 1; } TestStruct1 myStruct = new TestStruct1(); myStruct.a = 0x12345678; IntPtr p = Marshal.AllocHGlobal(Marshal.SizeOf(typeof(TestStruct1))); Marshal.StructureToPtr(myStruct, p, false); Type testType = typeof(TestStruct1); if (Marshal.ReadInt32(p, (int)Marshal.OffsetOf(testType, "a")) != myStruct.a) return 2; Marshal.FreeHGlobal(p); /// /// Testing struct size with ByValTStr string /// if(Marshal.SizeOf(typeof(TestStruct2)) != 32) return 3; TestStruct2 myStruct2 = new TestStruct2(); myStruct2.b = 0x12345678; p = Marshal.AllocHGlobal(Marshal.SizeOf(typeof(TestStruct2))); Marshal.StructureToPtr(myStruct2, p, false); Type testType2 = typeof(TestStruct2); if (Marshal.ReadInt32(p, (int)Marshal.OffsetOf(testType2, "b")) != myStruct2.b) return 4; Marshal.FreeHGlobal(p); /// /// Test structure size and struct with inheritance /// if(Marshal.SizeOf(typeof(TestStruct3)) != 64) return 5; TestStruct3 myStruct3 = new TestStruct3(); myStruct3.b = 0x12345678; myStruct3.c = 0x76543210; p = Marshal.AllocHGlobal(Marshal.SizeOf(typeof(TestStruct3))); Marshal.StructureToPtr(myStruct3, p, false); Type testType3 = typeof(TestStruct3); if(Marshal.ReadInt32(p, (int)Marshal.OffsetOf(testType3, "b")) != myStruct3.b) return 6; if (Marshal.ReadInt32(p, (int)Marshal.OffsetOf(testType3, "c")) != myStruct3.c) return 7; Marshal.FreeHGlobal(p); /// /// Also make sure OffsetOf returns the correct Exception. /// try { Marshal.OffsetOf(testType3, "blah"); return 8; } catch(ArgumentException e) { /// Way to go :) } catch(Exception e) { return 9; } return 0; } }