<?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>digitalMoto.net &#187; LINQ</title>
	<atom:link href="http://digitalMoto.net/blog/tag/linq/feed/" rel="self" type="application/rss+xml" />
	<link>http://digitalMoto.net/blog</link>
	<description>Off-idle banter on motorcycling, software development and life in the Pacific Northwest.</description>
	<lastBuildDate>Fri, 20 Jan 2012 18:46:18 +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>Maths</title>
		<link>http://digitalMoto.net/blog/2011/07/14/maths/</link>
		<comments>http://digitalMoto.net/blog/2011/07/14/maths/#comments</comments>
		<pubDate>Thu, 14 Jul 2011 20:45:10 +0000</pubDate>
		<dc:creator>digital</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[LINQ]]></category>
		<category><![CDATA[Math]]></category>

		<guid isPermaLink="false">http://digitalMoto.net/blog/2011/07/14/maths/</guid>
		<description><![CDATA[For my current project, I’m doing some statistical analysis.&#160; Part of that requires finding the mean and standard deviation for my collection of samples.&#160; Because of the data source, I need to use the formula for “Population Standard Deviation” which is a little different from the formula for “Standard Deviation.”&#160; The denominator is “n” instead [...]]]></description>
		<wfw:commentRss>http://digitalMoto.net/blog/2011/07/14/maths/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Modify text (visually) in a RichTextBox</title>
		<link>http://digitalMoto.net/blog/2011/05/29/modify-text-visually-in-a-richtextbox/</link>
		<comments>http://digitalMoto.net/blog/2011/05/29/modify-text-visually-in-a-richtextbox/#comments</comments>
		<pubDate>Sun, 29 May 2011 19:09:52 +0000</pubDate>
		<dc:creator>digital</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[CodeKeep]]></category>
		<category><![CDATA[LINQ]]></category>
		<category><![CDATA[RichTextBox]]></category>

		<guid isPermaLink="false">http://digitalMoto.net/blog/2011/05/29/modify-text-visually-in-a-richtextbox/</guid>
		<description><![CDATA[(Another snippet I originally posted to CodeKeep.) I needed to create a RichTextBox with a title, menu path, and description.&#160; Here&#8217;s how I made customized the visuals to suit the project.&#160; Title is enlarged and made bold.&#160; Menu is reduced and made italics.&#160; The description is &#8216;standard.&#8217; Code: &#160; var ptr = 0; IEnumerable&#60;CPlugin&#62; items [...]]]></description>
		<wfw:commentRss>http://digitalMoto.net/blog/2011/05/29/modify-text-visually-in-a-richtextbox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Removing items from a typed list</title>
		<link>http://digitalMoto.net/blog/2011/05/29/removing-items-from-a-typed-list/</link>
		<comments>http://digitalMoto.net/blog/2011/05/29/removing-items-from-a-typed-list/#comments</comments>
		<pubDate>Sun, 29 May 2011 19:03:27 +0000</pubDate>
		<dc:creator>digital</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[CodeKeep]]></category>
		<category><![CDATA[LINQ]]></category>

		<guid isPermaLink="false">http://digitalMoto.net/blog/2011/05/29/removing-items-from-a-typed-list/</guid>
		<description><![CDATA[(Another snippet I originally posted to CodeKeep.) Code: &#160; var myList = new List&#60;string&#62;() { "one", "two", "three" }; // print out the original list foreach (string item in myList) Console.WriteLine(item); // one two three myList.Remove("two"); // print out the new list foreach (string item in myList) Console.WriteLine(item); // one three &#160; Notes: You cannot [...]]]></description>
		<wfw:commentRss>http://digitalMoto.net/blog/2011/05/29/removing-items-from-a-typed-list/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove items from a list.</title>
		<link>http://digitalMoto.net/blog/2009/12/09/remove-items-from-a-list/</link>
		<comments>http://digitalMoto.net/blog/2009/12/09/remove-items-from-a-list/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 20:12:24 +0000</pubDate>
		<dc:creator>digital</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[LINQ]]></category>

		<guid isPermaLink="false">http://digitalMoto.net/blog/?p=1064</guid>
		<description><![CDATA[You have a list of &#8220;something&#8221; and you want to remove items from the list. I can think of a couple ways to do this. Remove Items V1: List myList = new List() { "one", "two", "three" }; // print out the original list foreach (string item in myList) Console.WriteLine(item); // one two three myList.Remove("two"); [...]]]></description>
		<wfw:commentRss>http://digitalMoto.net/blog/2009/12/09/remove-items-from-a-list/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

