Can anyone think of a nicer way to do the following:
public string ShortDescription { get { return this.Description.Length <= 25 ? this.Description :
without .... this should be the shortest :
public string ShortDescription { get { return Microsoft.VisualBasic.Left(this.Description;} }