I need to parse date times of the following format:
yyyyMMdd'T'(time elapsed since 12 AM) Time Zone
Here are two examples of what I have been given to parse:
20160301T162327.259 GMT
20160301T165900.541 GMT
Is this a common known DateTime format? I could not find it in any of the Standard Date and Time Format Strings. The following SO topics will help if I need to write code to parse it (2,3), but I didn't want to reinvent the wheel.