使用 struct 关键字可以创建你自己的自定义值类型。 结构通常用作一小组相关变量的容器,如以下示例所示:
public struct Coords { public int x, y; public Coords(int p1, int p2) { x = p1; y = p2; } }