What is the difference between const and readonly in C#?
const
readonly
When would you use one over the other?
I believe a const value is the same for all objects (and must be initialized with a literal expression), whereas readonly can be different for each instantiation...