C#9.0出现的init关键字
摘要:
public int Age { get; } public int Age { get; private set; } public int Age { get; init; } 以上三行代码的区别? //只读属性,只能在类的构造函数中赋值。 public int Age { get; } //对 阅读全文
posted @ 2022-12-08 23:51 尼普顿 阅读(57) 评论(0) 推荐(0) 编辑