What is the difference between const and readonly in C#?
const
readonly
When would you use one over the other?
Const: Absolute constant value during the application life time.
Readonly: It can be changed in running time.