private string _title;
public string Title
{
   get { return _title; }
   set { _title = value; }
}

Example 1: Simple public property.

Back to Article