Well, Console.Title is a property, which you set with similar syntax to setting a variable.
instance.propertyname = value;
Note that this usually ends up executing code in the property, which means a property can calculate stuff before returning it. For that reason, some properties are read-only, for instance a property that returns the number of items in a list or array would not be writeable, you modify that property by adding or removing items in the list instead.
Console.WriteLine(string) is a method, which you call like the second piece of code in your question.
instance.methodname(parameters);
When I'm unsure, I use intellisense:
Console. <-- i stop typing after the dot/full stop
You can wait for the intellisense menu to appear, or use keyboard shortcuts to bring up the intellisense menu, like Ctrl+Space or Ctrl+J.
In this case, you would have:

Here, the two icons mean:
- method
- property
properties,variablesandmethodsare. – VVS Dec 7 '10 at 12:01