You could do
public class B : A
{
public void CallHowdy()
{
Console.WriteLine(Howdy);
}
}
In your code, you're trying to access Howdy from outside an A, not from within a B. Here, you are inside a B, and can therefore access the protected member in A.