i am new to mvc and c#, and i came across these.
This is not a problem as such, just something i've been wondering about.
what is the difference between these two ?
public string Title { get; set; }
public string Title { get; internal set; }
and when do you use what ?
removing internal, does not really seem to do anything..
And since i do not know the specific names of these, i haven't been able to find any answers on my searches..