<?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>The Infinite Loop - Beginner&#039;s SEO, Beginner C# &#38; JQuery Tutorials &#187; SQL</title>
	<atom:link href="http://theinfiniteloopblog.com/category/sql/feed/" rel="self" type="application/rss+xml" />
	<link>http://theinfiniteloopblog.com</link>
	<description>Problem. Problem Solved. Loop. - The life of a programmer</description>
	<lastBuildDate>Wed, 17 Aug 2011 15:29:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>Creating/Retrieving a GUID object from a string C#</title>
		<link>http://theinfiniteloopblog.com/programming/creatingretrieving-a-guid-object-from-a-string-c/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=creatingretrieving-a-guid-object-from-a-string-c</link>
		<comments>http://theinfiniteloopblog.com/programming/creatingretrieving-a-guid-object-from-a-string-c/#comments</comments>
		<pubDate>Fri, 14 Aug 2009 23:35:01 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://scottmoniz.com/programmingBlog/?p=216</guid>
		<description><![CDATA[GUIDS are great to use if you ever may need to merge data. The chances of collision (duplicates) are extremely low. To generate a new guid, use this code: Guid g=Guid.NewGuid(); //this generates a GUID object Guid g2=Guid.NewGuid().ToString(); //this generates a GUID string There may be a time where in a stored procedure, you have [...]]]></description>
			<content:encoded><![CDATA[
<!-- ALL ADSENSE ADS DISABLED -->
<p>GUIDS are great to use if you ever may need to merge data.<br />
The chances of collision (duplicates) are extremely low.</p>
<p>To generate a new guid, use this code:<br />
Guid g=Guid.NewGuid(); //this generates a GUID object<br />
Guid g2=Guid.NewGuid().ToString(); //this generates a GUID string<br />
<br/><br />
<!--adsense--><br />
<br/><br />
There may be a time where in a stored procedure, you have a GUID as a parameter.</p>
<p>In C# you may have to pass this paramater to the procedure.<br />
This is actually very simple.</p>
<p>Given a string that you know is a GUID, you can retrieve a guid object like so:<br />
Guid g=new Guid(myStringGUID);</p>
<p>And thats all folks <img src='http://theinfiniteloopblog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://theinfiniteloopblog.com/programming/creatingretrieving-a-guid-object-from-a-string-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

