In C# .NET, why can't I access constants in a class with the 'this' keyword?

Example:

public class MyTest
{
    public const string HI = "Hello";

    public void TestMethod()
    {
        string filler;
        filler = this.HI; //Won't work.
        filler = HI       //Works.
    }
}
link|improve this question

feedback

4 Answers

up vote 13 down vote accepted

Because class constants aren't instance members; they're class members. The this keyword refers to an object, not the class, so you can't use it to refer to class constants.

This applies whether you're accessing the constant within a static or instance method in your class.

link|improve this answer
2  
Somebody is speedy this morning. Haha. – Justin Niessner Apr 5 '11 at 14:34
@Justin Niessner: Have you been stalking me?! – BoltClock Apr 5 '11 at 14:34
No...but I was typing an answer myself when I saw that something was already posted. – Justin Niessner Apr 5 '11 at 14:35
feedback

Constants are implicitly static.

link|improve this answer
feedback

Because constants are part of the class, you need to use the class name:

filler = MyTest.HI;
link|improve this answer
In the class you don't need to do this. – Daniel Rose Apr 5 '11 at 14:39
1  
True, you don't. I assumed he wanted to make it explicit where the constant was coming from. – Ferruccio Apr 5 '11 at 14:47
feedback

A const item is implicitly static. That means it belongs to the class and not the members of the class.

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.