You're currently trying to access a method like a property
Console.WriteLine("{0}",x.fullNameMethod);
It should be
Console.WriteLine("{0}",x.fullNameMethod());
Alternatively you could turn it into a property using
public string fullName
{
get
{
string x = firstName + " " + lastName;
return x;
}
}