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.
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.