What is the difference between const and readonly in C#?
const
readonly
When would you use one over the other?
const: Can't be changed anywhere.
readonly: This value can only be changed in the constructor. Can't be changed in normal functions.