Is there a C# equivalent of JS ES6's 'const' for declaring local variables that don't change value?
I know there is a 'const' keyword in C# but this isn't the same thing, as the value of this can only be set at compile time, not runtime.
I have found the ES6 const useful for making JS easier to read. Like seeing something declared as 'const' tells me that this is something that doesn't change. Likewise something declared as 'let' tells me that this is expected to change.