最佳答案
我确实有时会在属性中看到 getter 的缩写,例如这两种类型:
public int Number { get; } = 0
public int Number => 0;
有人能告诉我这两者之间有什么不同吗。他们表现如何?它们都是只读的吗?