Skip to main content

What is the difference between const and readonly?

Mid C#
Quick Answer const is a compile-time constant รขโ‚ฌโ€ the value is baked into compiled code, must be a primitive or string, implicitly static. readonly is a runtime constant รขโ‚ฌโ€ set at declaration or in the constructor. Prefer readonly for complex values or when the value depends on runtime data.

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.

S
SugharaIQ Editorial Team Verified Answer

This answer has been peer-reviewed by industry experts holding senior engineering roles to ensure technical accuracy and relevance for modern interview standards.

Want to bookmark, take notes, or join discussions?

Sign in to access all features and personalize your learning experience.

Sign In Create Account

Source: SugharaIQ

Ready to level up? Start Practice