标签: c#
我尝试实现单例
public static readonly MyClass Instance { get; } = new MyClass();
但是Visual Studio告诉我,我不能对此项目使用只读。为什么会这样?
答案 0 :(得分:4)
readonly是字段的有效修饰符。
readonly
对于属性,您可以控制是否以及谁可以使用get和set进行写/读。 readonly对某个属性没有意义。
get
set