↧
Answer by Philip Daubmeier for Parsing DateTime with a known but not given...
After having seen that the task can not be archieved with the help of the WP7/Silverlight framework, I wrote a small helper that does the job:public static class DateTimeHelper{ /// <summary> ///...
View ArticleAnswer by Jon Skeet for Parsing DateTime with a known but not given time zone
It sounds like you know what time zone you should be parsing it with. Assuming .NET 3.5 (and thus TimeZoneInfo) you should logically:Parse it as a "local" time (not time zone specific)Convert that...
View ArticleParsing DateTime with a known but not given time zone
I'm stuck with a problem around parsing date and time:I'm trying to parse a datetime string extracted from a german website. It is given in the format 'day.month.year 24hours:minutes', like:01.01.2011...
View Article