Why is here the ": NLength" needed?
string NLength = JasonCity.Value("name"); Name = (NLength.Length > 30) ? NLength.Substring(0, 25) + "." : NLength;
And here not:
string NLength = JasonCity.Value("name"); Name = NLength.Substring(0, 25) + ".";
What exactly does the colon mean?