I have dates from a data file that I need to parse. Here is an example of one of the dates and what I have so far:
DateTime.ParseExact("2013-01-26T02:43:55+0000","yyyy-MM-dd\THH:mm:ss",
As you can see, the date includes the timezone offset (the "+0000" part at the end). I am not sure how to...
Hi,
I have a text string like this which I will need to parse:
FriMar1200:00:00EST2010
And I used the following code:
Date.ParseExact("FriMar1200:00:00EST2010", "dddMMMddHH:mm:sszzzyyyy", Nothing)
And it is giving me a A first chance exception of type 'System.FormatException' occurred in...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.