Long answer: description is a special type of variable called a "field". You may wish to read up on fields on MSDN.
Short answer: You must access the protected field in a constructor, method, property, etc. of the subclass.
class Subclass
{
// These are field declarations. You can't say things like 'this.description = "foobar";' here.
string foo;
// Here is a method. You can access the protected field inside this method.
private void DoSomething()
{
string bar = description;
}
}
Slightly more detailed answer:
Inside a class declaration, you declare the members of the class. These may be fields, properties, methods, etc. This is not code that is executed. Unlike code inside a method, it simply tells the compiler what the members of the class are.
Inside certain class members, such as constructors, methods, and properties, is where you put your imperative code. Here is an example:
class Foo
{
// Declaring fields. These just define the members of the class.
string foo;
int bar;
// Declaring methods. The method declarations just define the members of the class, and the code inside them is only executed when the method is called.
private void DoSomething()
{
// When you call DoSomething(), this code is executed.
}
}
publicinstead ofprotected. – Vlad Jul 16 '11 at 13:14