They say the difference between readonly and const is that const is compile-time (while readonly is run time). But what exactly does that mean, The fact that it\'s compile t
One consequence of const being compile time is that changes to the const in one assembly does not get picked up automatically by other assemblies without recompiling them all.
Eg:
At runtime, Assembly B thinks the value of the const is still 10, not 20.
If it were readonly, it would pick up the new value.