<?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>WhyPad.com &#187; c#</title>
	<atom:link href="http://www.whypad.com/tag/c-sharp/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.whypad.com</link>
	<description>Tools and Tricks for Life and Tech</description>
	<lastBuildDate>Tue, 06 Dec 2011 22:35:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>C# &#8211; NullReferenceException with TableAdapter and Scalar Values</title>
		<link>http://www.whypad.com/posts/c-nullreferenceexception-with-tableadapter-and-scalar-values/1017/</link>
		<comments>http://www.whypad.com/posts/c-nullreferenceexception-with-tableadapter-and-scalar-values/1017/#comments</comments>
		<pubDate>Tue, 06 Dec 2011 22:35:45 +0000</pubDate>
		<dc:creator>byron</dc:creator>
				<category><![CDATA[ASP.NET/C#]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[c#]]></category>

		<guid isPermaLink="false">http://www.whypad.com/?p=1017</guid>
		<description><![CDATA[Ok, I&#8217;ve been hacking around this particular problem for a month now, but think I&#8217;ve got a bead on how to stop it. So, I hope this helps someone! The Situation I&#8217;ve got a TableAdapter in C# and I&#8217;m using a Query to return a scalar value that ultimately becomes a double data type. The [...]]]></description>
		<wfw:commentRss>http://www.whypad.com/posts/c-nullreferenceexception-with-tableadapter-and-scalar-values/1017/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C# &#8211; Convert String Array to a List (.Net 2.0)</title>
		<link>http://www.whypad.com/posts/c-convert-string-array-to-a-list-net-20/674/</link>
		<comments>http://www.whypad.com/posts/c-convert-string-array-to-a-list-net-20/674/#comments</comments>
		<pubDate>Tue, 19 May 2009 15:48:13 +0000</pubDate>
		<dc:creator>byron</dc:creator>
				<category><![CDATA[ASP.NET/C#]]></category>
		<category><![CDATA[c#]]></category>

		<guid isPermaLink="false">http://www.whypad.com/?p=674</guid>
		<description><![CDATA[So you&#8217;ve got a C# string and you want to convert it to a List&#60;string&#62;.  Lists are one of the most efficient ways of storing&#8230;well&#8230;lists of things in .Net.  If you&#8217;re in .Net 3.0, it&#8217;s quite easy to go from a string array to a list by using the .ToList() function. If you&#8217;re stuck in .Net [...]]]></description>
		<wfw:commentRss>http://www.whypad.com/posts/c-convert-string-array-to-a-list-net-20/674/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get ASP.NET DropDownList Selected Value with jQuery</title>
		<link>http://www.whypad.com/posts/get-aspnet-server-dropdownlist-selected-value-with-jquery/418/</link>
		<comments>http://www.whypad.com/posts/get-aspnet-server-dropdownlist-selected-value-with-jquery/418/#comments</comments>
		<pubDate>Fri, 31 Oct 2008 22:19:00 +0000</pubDate>
		<dc:creator>byron</dc:creator>
				<category><![CDATA[ASP.NET/C#]]></category>
		<category><![CDATA[Javascript Frameworks]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.whypad.com/?p=418</guid>
		<description><![CDATA[With Microsoft&#8217;s recent announcement that they will begin shipping jQuery with Visual Studio, the little Javascript framework is about to hit the big time (it was already sort of big time, but this is BIG TIME).  And rightfully so. I have been a Prototype and Scriptaculous user for over a year now.  But I am [...]]]></description>
		<wfw:commentRss>http://www.whypad.com/posts/get-aspnet-server-dropdownlist-selected-value-with-jquery/418/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>C# &#8211; Get a Random Number Between x and y</title>
		<link>http://www.whypad.com/posts/csharp-get-a-random-number-between-x-and-y/412/</link>
		<comments>http://www.whypad.com/posts/csharp-get-a-random-number-between-x-and-y/412/#comments</comments>
		<pubDate>Fri, 31 Oct 2008 17:37:30 +0000</pubDate>
		<dc:creator>byron</dc:creator>
				<category><![CDATA[ASP.NET/C#]]></category>
		<category><![CDATA[c#]]></category>

		<guid isPermaLink="false">http://www.whypad.com/?p=412</guid>
		<description><![CDATA[Here&#8217;s a quick function for getting random numbers in C#: Notice that you have to declare your instance of the Random class outside of the GetRandomInt function if you are going to be running this in a loop. &#8220;Why is this?&#8221; you ask. Well, the Random class actually generates pseudo random numbers, with the &#8220;seed&#8221; for [...]]]></description>
		<wfw:commentRss>http://www.whypad.com/posts/csharp-get-a-random-number-between-x-and-y/412/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>ASP.NET &#8211; C# &#8211; Emulating the VB Control Array &#8211; Pt. 1</title>
		<link>http://www.whypad.com/posts/aspnet-emulating-control-array/388/</link>
		<comments>http://www.whypad.com/posts/aspnet-emulating-control-array/388/#comments</comments>
		<pubDate>Wed, 29 Oct 2008 18:25:05 +0000</pubDate>
		<dc:creator>byron</dc:creator>
				<category><![CDATA[ASP.NET/C#]]></category>
		<category><![CDATA[c#]]></category>

		<guid isPermaLink="false">http://www.whypad.com/?p=388</guid>
		<description><![CDATA[For you veterans of VB6, the control array probably became an old friend, or at least an annoying neighbor if you didn&#8217;t like them.  You couldn&#8217;t help run across the concept in VB6 because every time you copy and pasted a control for the first time, you got asked if you wanted to create a control array. If [...]]]></description>
		<wfw:commentRss>http://www.whypad.com/posts/aspnet-emulating-control-array/388/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>C#: Convert Double to Integer&#8230;and other conversions</title>
		<link>http://www.whypad.com/posts/c-convert-double-to-integerand-other-conversions/279/</link>
		<comments>http://www.whypad.com/posts/c-convert-double-to-integerand-other-conversions/279/#comments</comments>
		<pubDate>Thu, 02 Oct 2008 02:47:45 +0000</pubDate>
		<dc:creator>byron</dc:creator>
				<category><![CDATA[ASP.NET/C#]]></category>
		<category><![CDATA[c#]]></category>

		<guid isPermaLink="false">http://www.whypad.com/?p=279</guid>
		<description><![CDATA[Type conversions and casting in C# are so whack!  Microsoft created the System.Convert class to bring some sanity and predictability to converting from one type to another in C#.  Without further ado, to convert a Double to an Integer, you can use:   int myInt = System.Convert.ToInt32(myDouble); The System.Convert class has the following methods: ToBoolean ToByte [...]]]></description>
		<wfw:commentRss>http://www.whypad.com/posts/c-convert-double-to-integerand-other-conversions/279/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASP.Net C# &#8211; PHP  Equivalents</title>
		<link>http://www.whypad.com/posts/aspnet-c-sharp-php-equivalents/263/</link>
		<comments>http://www.whypad.com/posts/aspnet-c-sharp-php-equivalents/263/#comments</comments>
		<pubDate>Wed, 17 Sep 2008 21:05:36 +0000</pubDate>
		<dc:creator>byron</dc:creator>
				<category><![CDATA[ASP.NET/C#]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.whypad.com/?p=263</guid>
		<description><![CDATA[On this post, I will be collecting ASP.NET C# commands that I use frequently in PHP but I have to continually look up in the little bit of ASP.NET that I do.  PHP can be frustrating for its inconsistencies in syntax, but what is even more frustrating is when you&#8217;re trying to do something in [...]]]></description>
		<wfw:commentRss>http://www.whypad.com/posts/aspnet-c-sharp-php-equivalents/263/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

