What is the difference between const and readonly in C#?
const
readonly
When would you use one over the other?
Read Only : Value can be changed through Ctor at runtime. But not through member Function
Constant : By default static. Value cannot be changed from anywhere ( Ctor, Function, runtime etc no-where)