.Net Tips – using readonly vs const in C#

Yan Cui

I help clients go faster for less using serverless technologies.

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. If you want a one-stop shop to help you quickly level up your serverless skills, you should check out my Production-Ready Serverless workshop. Over 20 AWS Heroes & Community Builders have passed through this workshop, plus 1000+ students from the likes of AWS, LEGO, Booking, HBO and Siemens.
  2. If you want to learn how to test serverless applications without all the pain and hassle, you should check out my latest course, Testing Serverless Architectures.
  3. If you’re a manager or founder and want to help your team move faster and build better software, then check out my consulting services.
  4. If you just want to hang out, talk serverless, or ask for help, then you should join my FREE Community.

 


Leave a Comment

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