What is the difference between const and readonly in C#?
const
readonly
When would you use one over the other?
ReadOnly :The value will be initialized only once from the constructor of the class. const: can be initialized in any function but only once