How to declare a local constant in C# ?

Like in Java, you can do the following :

public void f(){
  final int n = getNum(); // n declared constant
}

How to do the same in C# ? I tried with readonly and const but none seems to work.

Any help would be greatly appreciated.

Thanks.

link|improve this question

1  
This is the most annoying omission from C# in my short time using it. I use const on local variables in C++ all the time for my own safety, sanity, and readability. – pauldoo May 20 '10 at 10:16
feedback

5 Answers

up vote 7 down vote accepted

In C#, you cannot create a constant that is retrieved from a method.

http://msdn.microsoft.com/en-us/library/e6w8fe1b(VS.71).aspx

link|improve this answer
feedback

I'm not sure why readonly and const didn't work for you since these are the keywords you need. You use const if you have a literal (except for array literals) and readonly otherwise:

public void f()
{
    const int answer = 42;
}

private readonly int[] array = new int[] { 1, 2, 3, 4 };
private readonly DateTime date = DateTime.Now;
public void g()
{
    Console.WriteLine(date.ToString());   
}

readonly only works on class level (that is, you can only apply it to fields). Also as a consequence of const requiring a literal, it's inherently static while a readonly field can be either static or instance.

link|improve this answer
1  
It's important to note that creating a readonly instance of a reference type only means that the reference itself can't be changed; the object can still be modified normally (unless the type is immutable, like String). – CodeSavvyGeek Jan 13 '10 at 6:18
The answer to your question is simple -- none of them (const, readonly) would work in a given example. – macias Jan 13 '10 at 7:47
feedback

In the example you gave, you need to declare the variable as static, because you're initializing it with a method call. If you were initializing with a constant value, like 42, you can use const. For classes, structs and arrays, readonly should work.

link|improve this answer
6  
Please note that you cannot use static on variables, only on members. – DrJokepu Jan 13 '10 at 6:10
feedback

The const keyword is used to modify a declaration of a field or local variable.

From MSDN.

Since C# can't enforce "const correctnes" (like c++) anyway, I don't think it's very useful. Since functions are very narrwoly scoped, it is easy not to lose oversight.

link|improve this answer
I must point out however, that eric dahlvang is still right about why const didn't work in your case. – Johannes Rudolph Jan 13 '10 at 6:40
"Since functions are very narrwoly scoped, it is easy not to lose oversight." - Why do other languages like C++ and Java provide such mechanism then? – missingfaktor Jan 14 '10 at 5:48
Don't know about java, but c++ can enforce true const also on references, what c# can't. I have never seen const used locally anywhere else than in c++. – Johannes Rudolph Jan 14 '10 at 5:59
feedback

Have a look at the MSDN Documentation about C# constants

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.