Readonly
What is the Difference Between Constant and Readonly
readonly is a constant defined at runtime. const is used to create a constant at compile time. readonly field value can be changed after declaration. ...