What does a single quote inside a C# date time format mean?
57
We have e.g. this constant in C#:
System.Globalization.DateTimeFormatInfo.InvariantInfo.SortableDateTimePattern
It has this value:
"yyyy'-'MM'-'dd'T'HH':'mm':'ss"
I do use it in the ParseExact function and then yyyy-MM-ddTHH:mm:ss works as well.
I cannot figure out what the single quotes are for.