
GERMAN MARIN JARAMILLO
253 Pointsreturn property values in parentesis
in order to complete challenge
namespace Treehouse.Models
{
public class VideoGame
{
public int Id { get; set; }
public string Title { get; set; }
public string Description { get; set; }
public string[] Characters { get; set; }
public string Publisher { get; set; }
public string DisplayText
{
get
{
return Title + "(" + Publisher + ")";
}
}
}
}
1 Answer

Steven Parker
177,846 PointsAlmost there!
You just need to include a space before the open parenthesis, and you'll have it.
return Title + " (" + Publisher + ")";