.Net Tips – using readonly vs const in C#

Yan Cui

I help clients go faster for less using serverless technologies.

This article is brought to you by

The real-time data platform that empowers developers to build innovative products faster and more reliably than ever before.

Learn more

In C#, there are two ways for you to declare a constant variable, you can either declare the variable as readonly, or const:

readonly

A variable declared with the readonly modifier can only be assigned as part of the declaration or in the class’s constructor:

private static readonly string _defaultString = "Hello World";

const

A variable declared with the const modifier must be initialized as part of the declaration, and its value cannot be modified:

private const string DefaultString = "Hello World";

readonly vs const

Here’s a quick glance of how the two modifiers differ:

Evaluation Time Performance Type Restrictions Scope
readonly Runtime Slow None Instance or Static
const Compile-Time Fast Primitive types, enums or strings Static

As you can see, though const is faster, readonly offers much more flexibility. As Bill Wagner’s stated in his first Effective C# book:

A slower, correct program is better than a faster, broken program

which is why he’s recommended you should prefer readonly to const. But you must be wondering how using the const modifier can ‘break’ your program!?

Well, with const, the value of the variable is evaluated at compile-time and as I mentioned in my post on the volatile modifier here, the compiler will apply constant propagation and replace any reference to the constant variable with its value in the generated IL code, and this happens across assemblies! This behaviour introduces a subtle bug when you update the value of a constant variable and the updated value is not reflected in other assemblies (because the constant variable is not evaluated at runtime) until you rebuild the assemblies which references this constant variable.

Whenever you’re ready, here are 4 ways I can help you:

  1. Production-Ready Serverless: Join 20+ AWS Heroes & Community Builders and 1000+ other students in levelling up your serverless game. This is your one-stop shop for quickly levelling up your serverless skills.
  2. Do you want to know how to test serverless architectures with a fast dev & test loop? Check out my latest course, Testing Serverless Architectures and learn the smart way to test serverless.
  3. I help clients launch product ideas, improve their development processes and upskill their teams. If you’d like to work together, then let’s get in touch.
  4. Join my community on Discord, ask questions, and join the discussion on all things AWS and Serverless.

Leave a Comment

Your email address will not be published. Required fields are marked *