<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>TechiesWeb &#187; DateTime.Parse</title>
	<atom:link href="http://www.techiesweb.net/tag/datetime-parse/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.techiesweb.net</link>
	<description>Programming tips &#38; tricks,What went wrong while coding,Code snippets,ASP,ASP.NET,PHP,MySQL,SQL Server,jQuery,AJAX</description>
	<lastBuildDate>Tue, 22 Dec 2009 10:21:08 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>C# : How to Create a DateTime object from a string date</title>
		<link>http://www.techiesweb.net/2009/12/c-how-to-create-a-datetime-object-from-a-string-date/</link>
		<comments>http://www.techiesweb.net/2009/12/c-how-to-create-a-datetime-object-from-a-string-date/#comments</comments>
		<pubDate>Mon, 14 Dec 2009 13:36:28 +0000</pubDate>
		<dc:creator>Shyju</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[DateTime]]></category>
		<category><![CDATA[DateTime.Parse]]></category>
		<category><![CDATA[Parse]]></category>

		<guid isPermaLink="false">http://www.techiesweb.net/?p=20</guid>
		<description><![CDATA[In C#, Creating a DateTime object from a Date String is as follows.
 string strStartDate=&#8221;11/11/2009&#8243;;
DateTime objStartDate = DateTime.Parse(strStartDate);
The objStartDate object,which is an object of DateTime class,  is now holding the date and u can use this object for all date manipulation functions
Always use DateTime wherever handling the dates instead of using String.DateTime gives u flexibility [...]]]></description>
			<content:encoded><![CDATA[<p>In C#, Creating a DateTime object from a Date String is as follows.</p>
<p><span style="color: #0000ff;"> string strStartDate=&#8221;11/11/2009&#8243;;</span></p>
<p><span style="color: #0000ff;">DateTime objStartDate = DateTime.Parse(strStartDate);</span></p>
<p>The objStartDate object,which is an object of DateTime class,  is now holding the date and u can use this object for all date manipulation functions</p>
<p>Always use DateTime wherever handling the dates instead of using String.DateTime gives u flexibility to work more on that like performing date manipulation</p>
]]></content:encoded>
			<wfw:commentRss>http://www.techiesweb.net/2009/12/c-how-to-create-a-datetime-object-from-a-string-date/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
