using System.Runtime.InteropServices; namespace Apewer.Internals.Interop { /// [StructLayout(LayoutKind.Sequential)] struct Point { /// public int x; /// public int y; /// /// /// public Point(int x, int y) { this.x = x; this.y = y; } } }