Answer
const: Compile-time constant; must be assigned at declaration.
readonly: Runtime constant; can be assigned at declaration or inside a constructor.
Readonly avoids versioning issues because its value is not embedded into IL.
const: Compile-time constant; must be assigned at declaration.
readonly: Runtime constant; can be assigned at declaration or inside a constructor.
Readonly avoids versioning issues because its value is not embedded into IL.
Sign in to access all features and personalize your learning experience.
Source: SugharaIQ