POINT_16¶ 结构体定义¶ C++C# 1 2 3 4 5typedef struct { short X; short Y; } POINT_16; 1 2 3 4 5 6[StructLayout(LayoutKind.Sequential, Pack = 4)] public struct POINT_16 { public Int16 X; public Int16 Y; } 功能描述¶ 16位描述的点。 成员说明¶ 成员 类型 备注 X short X坐标。 Y short Y坐标。