This is a Sortable specifier for standard date and time strings.
In your case (line printing) I think this does not affect the output
The specifier affects the DateTime value, converting it to a display format suitable for sorting.
For example, calling this code
string result = string.Format("-{0:s}-", DateTime.Now); Console.WriteLine(result)
will print
2013-09-04T19:27:56
Steve source share