I have the following code:

public class iSito
{
    public const string myVar = "5262";

    public iSito()
    {

    }
}

Now, if from any context (in my case, a .ascx.cs) I try to use iSito.myVar, I can't get any value.

Why?

link|improve this question

Could you post a sample of the code in your .ascx.cs file? Also what specifically do you mean by "I can't get any value"? – Justin Nov 14 '11 at 13:38
Can you give some more info ? Do you have a compile error ? – Frederik Gheysels Nov 14 '11 at 13:40
feedback

3 Answers

up vote 6 down vote accepted

Is the iSito class in another DLL / assembly ? If so, have you rebuild the DLL and have you rebuild the application that consumes the DLL ?

A const value is written as a literal in the IL when you compile the client application. If you change the const, you'll have to rebuild the client app.

What happens if you change the const to be readonly ? (Just for testing purposes).

link|improve this answer
Was the rebuild! Thanks! :) – markzzz Nov 14 '11 at 13:46
When you declare the variable to be readonly, you do not have to rebuild the client app when you change the value of that variable. – Frederik Gheysels Nov 14 '11 at 14:00
2  
@markzzz Good point about the potential need of a rebuild. It's often encouraged to use static readonly when the value is public and only use const when internal or private – Rune FS Nov 14 '11 at 14:30
feedback

Your example is correct and should work - consts are automatically static, so you can access the field as iSito.myVar - make sure you qualify with the full namespace, same as needed to access the class (or add an appropriate using statement).

link|improve this answer
feedback

iSito.myVar works. I tried it.

link|improve this answer
Not that helpful you could suggest possible reasons why it might not work for OP. (Such as missing using directive) – Rune FS Nov 14 '11 at 13:44
OK, I just wanted to justify the fact that this syntax MUST work. – kol Nov 14 '11 at 13:49
-1: I agree with @RuneFS – Fischermaen Nov 14 '11 at 13:49
Then be happy together. – kol Nov 14 '11 at 13:51
feedback

Your Answer

 
or
required, but never shown

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