readonly 运行时常量的值取决初始化方式。
readonly 运行时常量 在类初始化的过程中可以被多次赋值,可以在字段声明处 赋值 ,也可以在类的构造函数中赋值,也可以在init 访问器中赋值。
类的初始化顺序 字段>构造函数>对象初始值设定项
public readonly string A1 = "10"; public A(string a) => A1 = a; public string B { get => A1; init => A1 = value; } static void Main(string[] args) { A a = new A("a") { B = "A" }; A b = new A("a"); Console.WriteLine($"a={a.A1} b={b.A1}"); Console.ReadKey(); }
static 字段的初始化
静态字段可以在声明处 初始化,也可以 在静态构造函数中初始化。