I run out of ideas i don't know what to do down here I need to make string Course Name outputs a message when it's longer than let's say 100 characters based in input of user
public string CourseName
{
get { return courseName; }
set
{
if (courseName>value)//I can't fix this one
{
Console.WriteLine("You have typed more than 50 characters");
}
else
{
courseName = value;
}
}
}