<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: A Good, practical LINQ example</title>
	<atom:link href="http://www.developingfor.net/c-30/a-good-practical-linq-example.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.developingfor.net/c-30/a-good-practical-linq-example.html</link>
	<description>Real World .NET Methods, Tricks, and Examples</description>
	<lastBuildDate>Thu, 11 Mar 2010 18:24:27 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: More Article</title>
		<link>http://www.developingfor.net/c-30/a-good-practical-linq-example.html/comment-page-1#comment-9951</link>
		<dc:creator>More Article</dc:creator>
		<pubDate>Thu, 28 Jan 2010 08:01:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.developingfor.net/c-30/a-good-practical-linq-example.html#comment-9951</guid>
		<description>Thank You for Helpful</description>
		<content:encoded><![CDATA[<p>Thank You for Helpful</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vipin cherukara</title>
		<link>http://www.developingfor.net/c-30/a-good-practical-linq-example.html/comment-page-1#comment-8428</link>
		<dc:creator>vipin cherukara</dc:creator>
		<pubDate>Wed, 17 Jun 2009 04:38:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.developingfor.net/c-30/a-good-practical-linq-example.html#comment-8428</guid>
		<description>More abount LINQ visit

http://vipinc007.blogspot.com/2009/03/linq-examples.html

for Dot net articles visit
http://dot-net-factory.blogspot.com</description>
		<content:encoded><![CDATA[<p>More abount LINQ visit</p>
<p><a href="http://vipinc007.blogspot.com/2009/03/linq-examples.html" rel="nofollow">http://vipinc007.blogspot.com/2009/03/linq-examples.html</a></p>
<p>for Dot net articles visit<br />
<a href="http://dot-net-factory.blogspot.com" rel="nofollow">http://dot-net-factory.blogspot.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Greg</title>
		<link>http://www.developingfor.net/c-30/a-good-practical-linq-example.html/comment-page-1#comment-528</link>
		<dc:creator>Greg</dc:creator>
		<pubDate>Wed, 30 Jul 2008 22:14:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.developingfor.net/c-30/a-good-practical-linq-example.html#comment-528</guid>
		<description>Actually, Ben&#039;s query can use the typical LINQ query using type inference for the range variable and it will work just fine. For example:

Dim query = _
  From c in Controls _
  Where TypeOf c Is TextBox _
  Select c

will select all the TextBoxes in the Controls collection. For some reason, VB does not place the same restriction on querying the Controls collection as C# does.</description>
		<content:encoded><![CDATA[<p>Actually, Ben&#8217;s query can use the typical LINQ query using type inference for the range variable and it will work just fine. For example:</p>
<p>Dim query = _<br />
  From c in Controls _<br />
  Where TypeOf c Is TextBox _<br />
  Select c</p>
<p>will select all the TextBoxes in the Controls collection. For some reason, VB does not place the same restriction on querying the Controls collection as C# does.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chato</title>
		<link>http://www.developingfor.net/c-30/a-good-practical-linq-example.html/comment-page-1#comment-478</link>
		<dc:creator>Chato</dc:creator>
		<pubDate>Thu, 24 Jul 2008 18:43:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.developingfor.net/c-30/a-good-practical-linq-example.html#comment-478</guid>
		<description>Hey Ben I think linqhelp.com has a solution to your Control.cast problem. Try searching over there. Nice read btw!</description>
		<content:encoded><![CDATA[<p>Hey Ben I think linqhelp.com has a solution to your Control.cast problem. Try searching over there. Nice read btw!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matthew</title>
		<link>http://www.developingfor.net/c-30/a-good-practical-linq-example.html/comment-page-1#comment-100</link>
		<dc:creator>Matthew</dc:creator>
		<pubDate>Thu, 19 Jun 2008 16:41:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.developingfor.net/c-30/a-good-practical-linq-example.html#comment-100</guid>
		<description>Dim query = from c As Control in Me.Controls

might just do the trick</description>
		<content:encoded><![CDATA[<p>Dim query = from c As Control in Me.Controls</p>
<p>might just do the trick</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben</title>
		<link>http://www.developingfor.net/c-30/a-good-practical-linq-example.html/comment-page-1#comment-82</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Tue, 17 Jun 2008 14:54:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.developingfor.net/c-30/a-good-practical-linq-example.html#comment-82</guid>
		<description>I tried differents fashions and I have always an error &quot;expression expected&quot; after the controls.Cast. It&#039;s the reason why I suspect Vb.Net to support the casting differently.</description>
		<content:encoded><![CDATA[<p>I tried differents fashions and I have always an error &#8220;expression expected&#8221; after the controls.Cast. It&#8217;s the reason why I suspect Vb.Net to support the casting differently.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joel</title>
		<link>http://www.developingfor.net/c-30/a-good-practical-linq-example.html/comment-page-1#comment-81</link>
		<dc:creator>Joel</dc:creator>
		<pubDate>Tue, 17 Jun 2008 14:27:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.developingfor.net/c-30/a-good-practical-linq-example.html#comment-81</guid>
		<description>Hmmm... isn&#039;t the Controls.Cast&lt;&gt; method available in VB.Net?  It would seem to me that this should be .Net and not language specific.</description>
		<content:encoded><![CDATA[<p>Hmmm&#8230; isn&#8217;t the Controls.Cast<> method available in VB.Net?  It would seem to me that this should be .Net and not language specific.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben</title>
		<link>http://www.developingfor.net/c-30/a-good-practical-linq-example.html/comment-page-1#comment-80</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Tue, 17 Jun 2008 02:05:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.developingfor.net/c-30/a-good-practical-linq-example.html#comment-80</guid>
		<description>Hi, 

How can I do it in vb.net. It seems that there is no equivalent casting like c#. I tried with CType and DirectCast with no success.

Thanks a lot,

Ben</description>
		<content:encoded><![CDATA[<p>Hi, </p>
<p>How can I do it in vb.net. It seems that there is no equivalent casting like c#. I tried with CType and DirectCast with no success.</p>
<p>Thanks a lot,</p>
<p>Ben</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Weekly Link Post 25 &#171; Rhonda Tipton&#8217;s WebLog</title>
		<link>http://www.developingfor.net/c-30/a-good-practical-linq-example.html/comment-page-1#comment-33</link>
		<dc:creator>Weekly Link Post 25 &#171; Rhonda Tipton&#8217;s WebLog</dc:creator>
		<pubDate>Mon, 21 Jan 2008 03:42:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.developingfor.net/c-30/a-good-practical-linq-example.html#comment-33</guid>
		<description>[...] Joel Cochran provides us A Good, practical LINQ example. [...]</description>
		<content:encoded><![CDATA[<p>[...] Joel Cochran provides us A Good, practical LINQ example. [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
