<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>A Brief History of DateTime [Anthony Moore]</title><link>http://blogs.msdn.com/bclteam/archive/2007/06/18/a-brief-history-of-datetime-anthony-moore.aspx</link><description>For the .NET 3.5 release, the BCL team has been trying to solve some problems related to dates, times and time zones that customers having been asking us to address for some time. We’ve invested in two significant features: TimeZoneInfo : Extended Time</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>MSDN Blog Postings &amp;middot; A Brief History of DateTime [Anthony Moore]</title><link>http://blogs.msdn.com/bclteam/archive/2007/06/18/a-brief-history-of-datetime-anthony-moore.aspx#3386971</link><pubDate>Mon, 18 Jun 2007 20:02:57 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:3386971</guid><dc:creator>MSDN Blog Postings · A Brief History of DateTime [Anthony Moore]</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://msdnrss.thecoderblogs.com/2007/06/18/a-brief-history-of-datetime-anthony-moore/"&gt;http://msdnrss.thecoderblogs.com/2007/06/18/a-brief-history-of-datetime-anthony-moore/&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>A Brief History of DateTime</title><link>http://blogs.msdn.com/bclteam/archive/2007/06/18/a-brief-history-of-datetime-anthony-moore.aspx#3391437</link><pubDate>Tue, 19 Jun 2007 01:14:16 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:3391437</guid><dc:creator>DotNetKicks.com</dc:creator><description>&lt;p&gt;You've been kicked (a good thing) - Trackback from DotNetKicks.com&lt;/p&gt;
</description></item><item><title>re: A Brief History of DateTime [Anthony Moore]</title><link>http://blogs.msdn.com/bclteam/archive/2007/06/18/a-brief-history-of-datetime-anthony-moore.aspx#3391985</link><pubDate>Tue, 19 Jun 2007 01:48:23 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:3391985</guid><dc:creator>Pete</dc:creator><description>&lt;p&gt;Great post Anthony, thanks!&lt;/p&gt;
&lt;p&gt;Thoughts:&lt;/p&gt;
&lt;p&gt;(1)&lt;/p&gt;
&lt;p&gt;&amp;lt;&amp;lt; DateTime is working just fine in the majority of existing uses&amp;gt;&amp;gt;&lt;/p&gt;
&lt;p&gt;I don't think anyone thinks this is really the case. I think we'd all like to see APIs amended as soon as possible to support the new type.&lt;/p&gt;
&lt;p&gt;(2) In the summary description of DateTime for intellisense, please can we have words to the effect that DateTime is effectively deprecated for many scenarios in favour of the new type. This would go a long way to preventing any more buggy .NET date/time code.&lt;/p&gt;
&lt;p&gt;(3) Was there any consideration given in the design process around making DateTimeOffset an (immutable) reference type?&lt;/p&gt;
&lt;p&gt;Pete.&lt;/p&gt;
</description></item><item><title>re: A Brief History of DateTime [Anthony Moore]</title><link>http://blogs.msdn.com/bclteam/archive/2007/06/18/a-brief-history-of-datetime-anthony-moore.aspx#3392027</link><pubDate>Tue, 19 Jun 2007 01:51:34 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:3392027</guid><dc:creator>lexp</dc:creator><description>&lt;p&gt;1. What about System.TypeCode support? Are there any plans for TypeCode.DateTimeOffset ?&lt;/p&gt;
&lt;p&gt;2. Are there any plans to support DateTimeOffset as a column type in SQL 2008?&lt;/p&gt;
&lt;p&gt;3. Will DateTimeOffset be supported in XSD schemas and System.IO classes?&lt;/p&gt;
&lt;p&gt;What can be possible issues with mass replacing DateTime to DateTimeOffset ?&lt;/p&gt;
</description></item><item><title>re: A Brief History of DateTime [Anthony Moore]</title><link>http://blogs.msdn.com/bclteam/archive/2007/06/18/a-brief-history-of-datetime-anthony-moore.aspx#3394360</link><pubDate>Tue, 19 Jun 2007 04:34:31 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:3394360</guid><dc:creator>chronos</dc:creator><description>&lt;p&gt;While I appreciate your efforts, these solutions do not truly address the real problems.&lt;/p&gt;
&lt;p&gt;I am also a customer and have been reporting my concerns and issues for many years.&lt;/p&gt;
&lt;p&gt;I need a UTC-DateTime that *is a* DateTime. If I use DateTimeOffset, I will still need to convert it to DateTime when passing it as a parameter to existing methods. This introduces an opportunity for errors.&lt;/p&gt;
&lt;p&gt;&amp;gt; &amp;quot;there is no practical way to do&lt;/p&gt;
&lt;p&gt;&amp;gt; it without breaking compatibility.&amp;quot;&lt;/p&gt;
&lt;p&gt;Being a structure, extension is difficult. Could it be promoted to a class? Probably not a very good idea either. Ideally I would prefer an IDateTime interface, but then many existing signatures would need to be changed or it would be useless. Those changes could be done slowly overtime. But at least give us the interface and start addressing the real problem here.&lt;/p&gt;
&lt;p&gt;As it is, we now filter through all source code searching for DateTime usage. Every instance is flagged as a potential bug (and usually is) needing special review. It is very timely and costly. Depreciating this poorly designed type would be very (*very*) appreciated. And depreciating it would also allow you to update signatures to use a new IDateTime interface.&lt;/p&gt;
&lt;p&gt;I am also dissatisfied with TimeZoneInfo. It is a wrapper around OS timezone info. However, that OS support needs a manual update to be installed, and will need future updates as well. I can not assume that customers will have it or future updates installed. A better solution is to wrap something like &lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://www.twinsun.com/tz/tz-link.htm"&gt;http://www.twinsun.com/tz/tz-link.htm&lt;/a&gt; . Caching the results for an appropriate amount of time should suffice. New data can be periodically downloaded. The user need not install anything, or even know anything about it. This is something that I can (and do) do on my own. However, integrating it into the framework library is difficult without any interfaces...&lt;/p&gt;
&lt;p&gt;Please, design to interfaces. It would really solve so many issues.&lt;/p&gt;
</description></item><item><title>re: A Brief History of DateTime [Anthony Moore]</title><link>http://blogs.msdn.com/bclteam/archive/2007/06/18/a-brief-history-of-datetime-anthony-moore.aspx#3401421</link><pubDate>Tue, 19 Jun 2007 12:43:37 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:3401421</guid><dc:creator>Mike Griffiths</dc:creator><description>&lt;p&gt;A well detailed and explanatory post that adds clarity to the DateTime enhancement and will help us full understand and apply the new type where required.&lt;/p&gt;
&lt;p&gt;I think that you have made the right design decisions - not to break with backwards compatibility and to leave the existing type in place to serve in most applications. The new type will be welcomed however by developers building systems that run across time zones.&lt;/p&gt;
</description></item><item><title>re: A Brief History of DateTime [Anthony Moore]</title><link>http://blogs.msdn.com/bclteam/archive/2007/06/18/a-brief-history-of-datetime-anthony-moore.aspx#3404471</link><pubDate>Tue, 19 Jun 2007 15:26:22 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:3404471</guid><dc:creator>Bill Menees</dc:creator><description>&lt;p&gt;This is one of the best posts I've ever read on MSDN blogs. &amp;nbsp;It's extremely well written and informative. &amp;nbsp;Thanks, Anthony!&lt;/p&gt;
&lt;p&gt;FWIW, I totally agree that &amp;quot;DateTime is working just fine in the majority of existing uses&amp;quot;. &amp;nbsp;It works fine for my use cases, but it's good to know that the BCL team is working hard to handle other use cases as well.&lt;/p&gt;
</description></item><item><title>re: A Brief History of DateTime [Anthony Moore]</title><link>http://blogs.msdn.com/bclteam/archive/2007/06/18/a-brief-history-of-datetime-anthony-moore.aspx#3406774</link><pubDate>Tue, 19 Jun 2007 17:47:17 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:3406774</guid><dc:creator>Tom</dc:creator><description>&lt;p&gt;&amp;gt;&amp;gt; Anthony Moore&lt;/p&gt;
&lt;p&gt;Everyone here writes about IDateTime interface. BUT, everyone should be also aware that with current DateTime being Value Type, there would be a performance penalty caused by (un)boxing with methods expecting ref type (IDateTime) instead...&lt;/p&gt;
</description></item><item><title>re: A Brief History of DateTime [Anthony Moore]</title><link>http://blogs.msdn.com/bclteam/archive/2007/06/18/a-brief-history-of-datetime-anthony-moore.aspx#3406825</link><pubDate>Tue, 19 Jun 2007 17:50:59 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:3406825</guid><dc:creator>Anders Borum</dc:creator><description>&lt;p&gt;I share the question by an earlier poster:&lt;/p&gt;
&lt;p&gt;&amp;quot;Are there any plans to support DateTimeOffset as a column type in SQL 2008?&amp;quot;&lt;/p&gt;
&lt;p&gt;Any thoughts on this? If not, what is the preferred way of storing and converting back to DateTimeOffset from a SQL column?!&lt;/p&gt;
</description></item><item><title>re: A Brief History of DateTime [Anthony Moore]</title><link>http://blogs.msdn.com/bclteam/archive/2007/06/18/a-brief-history-of-datetime-anthony-moore.aspx#3409424</link><pubDate>Tue, 19 Jun 2007 21:29:35 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:3409424</guid><dc:creator>Justin Van Patten</dc:creator><description>&lt;p&gt;Pete,&lt;/p&gt;
&lt;p&gt;1. We will incrementally start to add new APIs that use the new type and will consider changing existing APIs where appropriate.&lt;/p&gt;
&lt;p&gt;2. This is a good idea that we will definitely consider.&lt;/p&gt;
&lt;p&gt;3. Not that I'm aware of. &amp;nbsp;I think we always had planned on the new type being a value type. &amp;nbsp;One of the main goals we had when designing DateTimeOffset was for it to be largely substitutable with DateTime.&lt;/p&gt;
&lt;p&gt;lexp,&lt;/p&gt;
&lt;p&gt;1. There are no plans to add this to System.TypeCode. &amp;nbsp;Could you explain your scenario for needing this?&lt;/p&gt;
&lt;p&gt;2. DateTimeOffset is indeed a new column type in SQL Server 2008! &amp;nbsp;We worked closely with the SQL team and both types are called DateTimeOffset and have the same internal layout.&lt;/p&gt;
&lt;p&gt;3. DateTimeOffset will be supported in XSD schemas, although, I'm not sure whether or not this made it into .NET 3.5. &amp;nbsp;Which System.IO classes are you referring to?&lt;/p&gt;
&lt;p&gt;4. We've designed DateTimeOffset's members to be as similar to DateTime as possible, so it shouldn't be too hard to mass replace.&lt;/p&gt;
&lt;p&gt;chronos,&lt;/p&gt;
&lt;p&gt;You can create custom TimeZoneInfo instances with the static TimeZoneInfo.CreateCustomTimeZone method filling it with data from a copy of the Olson time zone database if necessary.&lt;/p&gt;
&lt;p&gt;Anders,&lt;/p&gt;
&lt;p&gt;As I mentioned above DateTimeOffset is indeed a new column type in SQL Server 2008! &amp;nbsp;We worked closely with the SQL team and both type are called DateTimeOffset and have the same internal layout.&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Justin Van Patten&lt;/p&gt;
&lt;p&gt;CLR Program Manager&lt;/p&gt;
</description></item><item><title>re: A Brief History of DateTime [Anthony Moore]</title><link>http://blogs.msdn.com/bclteam/archive/2007/06/18/a-brief-history-of-datetime-anthony-moore.aspx#3414580</link><pubDate>Wed, 20 Jun 2007 02:58:54 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:3414580</guid><dc:creator>chronos</dc:creator><description>&lt;p&gt;Tom,&lt;/p&gt;
&lt;p&gt;&amp;gt; BUT, everyone should be also aware&lt;/p&gt;
&lt;p&gt;&amp;gt; that with current DateTime being&lt;/p&gt;
&lt;p&gt;&amp;gt; Value Type, there would be a&lt;/p&gt;
&lt;p&gt;&amp;gt; performance penalty caused by&lt;/p&gt;
&lt;p&gt;&amp;gt;(un)boxing with methods expecting&lt;/p&gt;
&lt;p&gt;&amp;gt; ref type (IDateTime) instead...&lt;/p&gt;
&lt;p&gt;Of course performance is important. However, more important than that is correctability and lack of bugs. DateTime as is broken. Anyone suggesting otherwise either has not worked with the type for long or is in denial. The problems are clear and have been written about extensively. That is why various solutions are being attempted. However, none of those solutions integrate well into the existing framework. For that to happen, there are only two options: 1) inheritance or 2) interfaces. Option 1 is not really likely for technical reasons. Options 2, while potentially being less performant, offers a solution without sacrificing backward compatibility. For those who are happy with the current DateTime, they may continue to use it without any performance lose. (I truly think they will end up regretting it one day when the bugs become known, though.)&lt;/p&gt;
&lt;p&gt;This is not a solution. It only changes the problem a little.&lt;/p&gt;
</description></item><item><title>re: A Brief History of DateTime [Anthony Moore]</title><link>http://blogs.msdn.com/bclteam/archive/2007/06/18/a-brief-history-of-datetime-anthony-moore.aspx#3415692</link><pubDate>Wed, 20 Jun 2007 05:14:13 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:3415692</guid><dc:creator>chronos</dc:creator><description>&lt;p&gt;Justin Van Patten,&lt;/p&gt;
&lt;p&gt;&amp;gt; You can create custom TimeZoneInfo&lt;/p&gt;
&lt;p&gt;&amp;gt; instances with the static &lt;/p&gt;
&lt;p&gt;&amp;gt; TimeZoneInfo.CreateCustomTimeZone&lt;/p&gt;
&lt;p&gt;&amp;gt; method filling it with data from a&lt;/p&gt;
&lt;p&gt;&amp;gt; copy of the Olson time zone database&lt;/p&gt;
&lt;p&gt;&amp;gt; if necessary.&lt;/p&gt;
&lt;p&gt;I know. That was mentioned a few posts back. However, the real issue: how could it not be necessary? I can not assume that all users will have past and future updates installed. Therefore, I can not depend on the correct TZ information to be present on the system. Thus, I must ignore your data and always import the data via CreateCustomTimeZone.&lt;/p&gt;
&lt;p&gt;Except for integration with TimeZoneInfo, I have been doing exactly that for a while. Once Orcas is released, I will need to port that over to your TimeZoneInfo implementation. Can the type be extended? Are there any interfaces to implement? Or will you tie my hands like with DateTime and absolutely force me to use CreateCustomTimeZone? I can probably guess the answers.&lt;/p&gt;
</description></item><item><title>DateTime e DateTimeOffset</title><link>http://blogs.msdn.com/bclteam/archive/2007/06/18/a-brief-history-of-datetime-anthony-moore.aspx#3420385</link><pubDate>Wed, 20 Jun 2007 12:12:08 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:3420385</guid><dc:creator>Marco Russo</dc:creator><description>&lt;p&gt;Magari non &amp;#232; uno dei massimi problemi per chi lavora in Europa e generalmente ha a che fare con un solo&lt;/p&gt;
</description></item><item><title>re: A Brief History of DateTime [Anthony Moore]</title><link>http://blogs.msdn.com/bclteam/archive/2007/06/18/a-brief-history-of-datetime-anthony-moore.aspx#3432450</link><pubDate>Thu, 21 Jun 2007 01:35:15 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:3432450</guid><dc:creator>Andrew McCallum</dc:creator><description>&lt;p&gt;Java had these problems 10 years ago, and you guys did not learn anything from it. &amp;nbsp;They ended up deprecating most functionality in Date and moving it to Calendar. &amp;nbsp;Why couldn't you have a DateTime object that optionaly has a null TimeZone property?&lt;/p&gt;
</description></item><item><title>re: A Brief History of DateTime [Anthony Moore]</title><link>http://blogs.msdn.com/bclteam/archive/2007/06/18/a-brief-history-of-datetime-anthony-moore.aspx#3440501</link><pubDate>Thu, 21 Jun 2007 11:35:12 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:3440501</guid><dc:creator>Johannes Hansen</dc:creator><description>&lt;p&gt;Great post and great title... ;)&lt;/p&gt;
</description></item><item><title>re: A Brief History of DateTime [Anthony Moore]</title><link>http://blogs.msdn.com/bclteam/archive/2007/06/18/a-brief-history-of-datetime-anthony-moore.aspx#3446549</link><pubDate>Thu, 21 Jun 2007 21:22:18 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:3446549</guid><dc:creator>Michael Link</dc:creator><description>&lt;p&gt;Great, insightful post about a difficult subject.&lt;/p&gt;
&lt;p&gt;Andrew McCallum is right that Java had similar problems with their Date-Class. But worse they did it wrong the second time with the ugly Calendar class, I've never seen such an unintuitive Date-API. Luckily they started JSR 310 and I really hope they will integrate most of the design of the great Joda-Library.&lt;/p&gt;
</description></item><item><title>UTCDateTime</title><link>http://blogs.msdn.com/bclteam/archive/2007/06/18/a-brief-history-of-datetime-anthony-moore.aspx#3446605</link><pubDate>Thu, 21 Jun 2007 21:26:37 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:3446605</guid><dc:creator>Stephen Channell</dc:creator><description>&lt;p&gt;Despite your well argued point, this is still looks like a nasty hack.&lt;/p&gt;
&lt;p&gt;What do we do with a restless trader in Singapore executing a trade through a London app online to the NASDAQ in New York, and need to ensure we execute the trade within the Quote time.. what we need is a UTCDateTime from end-to-end that is only converted to local-time when we need to display it.. &lt;/p&gt;
&lt;p&gt;Universal Time is a Universal Standard!&lt;/p&gt;
</description></item><item><title>re: A Brief History of DateTime [Anthony Moore]</title><link>http://blogs.msdn.com/bclteam/archive/2007/06/18/a-brief-history-of-datetime-anthony-moore.aspx#3449975</link><pubDate>Fri, 22 Jun 2007 02:38:13 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:3449975</guid><dc:creator>chronos</dc:creator><description>&lt;p&gt;Exactly my point, Stephen Channell.&lt;/p&gt;
&lt;p&gt;While we can work with DateTimeOffset up to a point, it will need to be converted to a DateTime to work with existing APIs in the framework. It will be difficult if not impossible to avoid that conversion, which invites an opportunity for error and hence bugs.&lt;/p&gt;
&lt;p&gt;What we really need is a UtcDateTime that *is a* DateTime. That may not be possible for technical reasons (value type), but if an IDateTime interface were to be introduced and all framework signatures were updated to use the interface, both backward compatibility could be preserved and those needing a UtcDateTime would be free to use it without need for conversion. It would integrate well with the framework, too.&lt;/p&gt;
</description></item><item><title>re: A Brief History of DateTime [Anthony Moore]</title><link>http://blogs.msdn.com/bclteam/archive/2007/06/18/a-brief-history-of-datetime-anthony-moore.aspx#3595737</link><pubDate>Fri, 29 Jun 2007 04:56:30 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:3595737</guid><dc:creator>Morten Mertner</dc:creator><description>&lt;p&gt;I'd have to support chronos and Stephen Channell in that DateTimeOffset seems like a non-solution to the problem.&lt;/p&gt;
&lt;p&gt;UTCDateTime is an intuitive concept and IDateTime would solve compatibility issues for future revisions.&lt;/p&gt;
</description></item><item><title>re: A Brief History of DateTime [Anthony Moore]</title><link>http://blogs.msdn.com/bclteam/archive/2007/06/18/a-brief-history-of-datetime-anthony-moore.aspx#3639761</link><pubDate>Sun, 01 Jul 2007 13:18:42 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:3639761</guid><dc:creator>Brian Anderson</dc:creator><description>&lt;p&gt;I must agree with chronos, Stephen Channel, and Morten Mertner. DateTimeOffset is not a solution to the real problem. Backward compatibility can be preserved with the addition of an IDateTime interface while also providing a path towards a real solution: UtcDateTime, which would implement IDateTime.&lt;/p&gt;
</description></item><item><title>Why is the blog's subtitle "Not actually a .NET blog"?</title><link>http://blogs.msdn.com/bclteam/archive/2007/06/18/a-brief-history-of-datetime-anthony-moore.aspx#4368589</link><pubDate>Mon, 13 Aug 2007 17:17:47 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4368589</guid><dc:creator>Noticias externas</dc:creator><description>&lt;p&gt;Based on the feedback from my last CLR week ,&lt;/p&gt;
&lt;p&gt;I think one CLR week a year is about right,&lt;/p&gt;
&lt;p&gt;Welcome to&lt;/p&gt;
</description></item><item><title>Why is the blog's subtitle "Not actually a .NET blog"?</title><link>http://blogs.msdn.com/bclteam/archive/2007/06/18/a-brief-history-of-datetime-anthony-moore.aspx#4368834</link><pubDate>Mon, 13 Aug 2007 17:57:05 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4368834</guid><dc:creator>The Old New Thing</dc:creator><description>&lt;p&gt;CLR Week: A new annual tradition.&lt;/p&gt;
</description></item><item><title>WebServices and Timezone </title><link>http://blogs.msdn.com/bclteam/archive/2007/06/18/a-brief-history-of-datetime-anthony-moore.aspx#4395514</link><pubDate>Wed, 15 Aug 2007 08:02:12 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4395514</guid><dc:creator>Bits&amp;Bytes</dc:creator><description>&lt;p&gt;Have you ever had to deal with consumer and provider of webservices residing in different time zones&lt;/p&gt;
</description></item><item><title>TimeZoneInfo と DateTimeOffset</title><link>http://blogs.msdn.com/bclteam/archive/2007/06/18/a-brief-history-of-datetime-anthony-moore.aspx#4717456</link><pubDate>Mon, 03 Sep 2007 08:22:50 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4717456</guid><dc:creator>Days with .NET Framework</dc:creator><description>&lt;p&gt;皆さん、こんにちは 前回お約束した通り、少しずつではありますがTechEdでのDEMOのフォローをしていきたいと思います。 今回は.NET Framework 3.5 で改善された TimeZone への対応について紹介したいと思います。今回、ご紹介するのは&lt;/p&gt;
</description></item><item><title>TimeZoneInfo と DateTimeOffset</title><link>http://blogs.msdn.com/bclteam/archive/2007/06/18/a-brief-history-of-datetime-anthony-moore.aspx#4717638</link><pubDate>Mon, 03 Sep 2007 08:40:39 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4717638</guid><dc:creator>Noticias externas</dc:creator><description>&lt;p&gt;皆さん、こんにちは 前回お約束した通り、少しずつではありますがTechEdでのDEMOのフォローをしていきたいと思います。 今回は.NET Framework 3.5 で改善された TimeZone への対応について紹介したいと思います&lt;/p&gt;
</description></item><item><title>Celexa side effects.</title><link>http://blogs.msdn.com/bclteam/archive/2007/06/18/a-brief-history-of-datetime-anthony-moore.aspx#8721714</link><pubDate>Fri, 11 Jul 2008 20:14:37 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8721714</guid><dc:creator>Genunie celexa click here.</dc:creator><description>&lt;p&gt;Celexa and aalcohol. Celexa and provigil. Celexa poids. Celexa and birthcontrol.&lt;/p&gt;
</description></item><item><title>SQL Server 2008 For Developers</title><link>http://blogs.msdn.com/bclteam/archive/2007/06/18/a-brief-history-of-datetime-anthony-moore.aspx#8977401</link><pubDate>Mon, 06 Oct 2008 05:18:31 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8977401</guid><dc:creator>Jim O'Neil's Blog</dc:creator><description>&lt;p&gt;This is the first of three postings I'm writing to follow up on the MSDN Events sessions I delivered&lt;/p&gt;
</description></item></channel></rss>