1#region Property get & set: public string Title ...
2
3/// <summary>
4/// Gets or sets the title of the category.
5/// </summary>
6/// <value>The title.</value>
7public string Title
8{
9 get
10 {
11 return (this.title == null) ? string.Empty : this.title;
12 }
13 set
14 {
15 this.title = (value == null || value.Trim().Length == 0) ? null : value.Trim();
16 }
17}
18#endregion