
mikkel pohjola
1,966 Pointsi need help with challange task 1 of 2 i cant get it to work
I have done what the task want me to do but i can not get it to work, what am i missing?
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(i.e. 'Super Mario 64 (Nintendo)');
}
}
}
}
1 Answer

Kyle Southerland
UX Design Techdegree Student 11,117 PointsYou're almost there. i.e. Super Mario 64 (Nintendo) was just and example they were giving you, but what you have is only missing a couple of things. Your return statement should look like this, return Title + " (" + Publisher + ")";
mikkel pohjola
1,966 Pointsmikkel pohjola
1,966 Pointsthanks that works :)