<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DZone Snippets: age code</title>
    <link>http://snippets.dzone.com/posts</link>
    <pubDate>Wed, 08 Oct 2008 07:28:42 GMT</pubDate>
    <description>DZone Snippets: age code</description>
    <item>
      <title>Calculate age in C#</title>
      <link>http://snippets.dzone.com/posts/show/1632</link>
      <description>using System;&lt;br /&gt;using System.Data;&lt;br /&gt;&lt;br /&gt;&lt;code&gt;&lt;br /&gt;public static class Snippets&lt;br /&gt;{&lt;br /&gt;    public static int CalculateAge(DateTime birthdate)&lt;br /&gt;    {&lt;br /&gt;        // get the difference in years&lt;br /&gt;        int years = DateTime.Now.Year - birthdate.Year;&lt;br /&gt;        // subtract another year if we're before the&lt;br /&gt;        // birth day in the current year&lt;br /&gt;        if (DateTime.Now.Month &lt; birthdate.Month || (DateTime.Now.Month == birthdate.Month &amp;&amp; DateTime.Now.Day &lt; birthdate.Day))&lt;br /&gt;            years--;&lt;br /&gt;&lt;br /&gt;        return years;&lt;br /&gt;    }&lt;br /&gt;}&lt;br /&gt;&lt;/code&gt;</description>
      <pubDate>Sat, 04 Mar 2006 07:04:01 GMT</pubDate>
      <guid>http://snippets.dzone.com/posts/show/1632</guid>
      <author>Edgardo (Edgardo Rossetto)</author>
    </item>
  </channel>
</rss>
