📜  c#代码示例中的静态只读变量

📅  最后修改于: 2022-03-11 14:48:57.183000             🧑  作者: Mango

代码示例1
A Static Readonly type variable's value can be assigned at runtime or
  assigned at compile time and changed at runtime.
  But this variable's value can only be changed in the 
  static constructor. And cannot be changed further.
  It can change only once at runtime.