What are the difference between const and readonly?
Answer:
A const can not be static, while readonly can be static.
A const need to be declared and initialized at declaration only, while a readonly can be initialized at declaration or by the code in the constructor.
A const's value is evaluated at design time, while a readonly's value is evaluated at runtime.
No comments:
Post a Comment