const is something that is better applied for true constants (the speed
of light, days of the week, number of seconds in a minute, etc, etc).
readonly is better suited for those things that require initialization,
which aren't necessarily known before the app is run. Good examples are the
local computer name, the startup time of a program, etc, etc. Basically,
things that won't change, but require some sort of work to find out when the
app is run.