Summary
Defines one of several common date/time formats which are either ISO-8601 compatible or very slight deviations from it.
Enum values
| 1 | A non-delimited compact format. Known as "basic" in ISO-8601. Example: 20071231T2115 . |
| 2 | A non-delimited compact format with '-' instead of 'T'. Not ISO-8601, but supported by DateTimeExtensions.TryParseIso(string, out DateTime). Example: 20071231-2115 . |
| 3 | A delimited, readable format without spaces usable in filenames. Not ISO-8601, and not supported by DateTimeExtensions.TryParseIso(string, out DateTime). Example: 2007.12.31-21.15 . |
| 0 | A delimited, readable format. Known as "extended" in ISO-8601. Example: 2007-12-31 21:15 . |
| 4 | The standard ISO-8601 format. Example: 2007-12-31T21:15 . |