官方基本範例
public struct Coords
{
public Coords(double x, double y)
{
X = x;
Y = y;
}
public double X { get; }
public double Y { get; }
public override string ToString() => $"({X}, {Y})";
}
Struct 基本限制
- 使用函式時,需有相對應參數,上方範例舉例
new Coords(1,2)
- Struct內可宣告
static
或const
或其他靜態屬性