<?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: Using LinqPad to Create a Time-Selector Drop-Down List</title>
	<atom:link href="http://www.richardbushnell.net/2008/01/18/using-linqpad-to-create-a-time-selector-drop-down-list/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.richardbushnell.net/2008/01/18/using-linqpad-to-create-a-time-selector-drop-down-list/</link>
	<description></description>
	<lastBuildDate>Thu, 29 Sep 2011 17:23:04 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: davidk</title>
		<link>http://www.richardbushnell.net/2008/01/18/using-linqpad-to-create-a-time-selector-drop-down-list/comment-page-1/#comment-41</link>
		<dc:creator>davidk</dc:creator>
		<pubDate>Thu, 17 Sep 2009 04:04:27 +0000</pubDate>
		<guid isPermaLink="false">http://richardbushnell.net/index.php/2008/01/18/using-linqpad-to-create-a-time-selector-drop-down-list/#comment-41</guid>
		<description>Great ideas.  I liked the step parameter idea:

from hour in 0.To(23)
from minute in 0.To(59, 15)
select string.Format(&quot;{0:00}:{1:00}&quot;, hour, minute)


        public static IEnumerable To(this int first, int last, int step) {
            return Enumerable.Range(first, (last - first + 1)/step).Select( i =&gt; i * step);
        }</description>
		<content:encoded><![CDATA[<p>Great ideas.  I liked the step parameter idea:</p>
<p>from hour in 0.To(23)<br />
from minute in 0.To(59, 15)<br />
select string.Format(&#8220;{0:00}:{1:00}&#8221;, hour, minute)</p>
<p>        public static IEnumerable To(this int first, int last, int step) {<br />
            return Enumerable.Range(first, (last &#8211; first + 1)/step).Select( i =&gt; i * step);<br />
        }</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Figment Engine</title>
		<link>http://www.richardbushnell.net/2008/01/18/using-linqpad-to-create-a-time-selector-drop-down-list/comment-page-1/#comment-40</link>
		<dc:creator>Figment Engine</dc:creator>
		<pubDate>Fri, 06 Feb 2009 18:19:11 +0000</pubDate>
		<guid isPermaLink="false">http://richardbushnell.net/index.php/2008/01/18/using-linqpad-to-create-a-time-selector-drop-down-list/#comment-40</guid>
		<description>used your To method to create range operations for characters. thanks!</description>
		<content:encoded><![CDATA[<p>used your To method to create range operations for characters. thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: anonymous</title>
		<link>http://www.richardbushnell.net/2008/01/18/using-linqpad-to-create-a-time-selector-drop-down-list/comment-page-1/#comment-39</link>
		<dc:creator>anonymous</dc:creator>
		<pubDate>Sun, 20 Jan 2008 01:16:42 +0000</pubDate>
		<guid isPermaLink="false">http://richardbushnell.net/index.php/2008/01/18/using-linqpad-to-create-a-time-selector-drop-down-list/#comment-39</guid>
		<description>I like this, but I think it would be better to use a variation of To that has a step parameter like this:

from minute in 0.To(59, 15)

It&#039;s much better perf-wise etc.</description>
		<content:encoded><![CDATA[<p>I like this, but I think it would be better to use a variation of To that has a step parameter like this:</p>
<p>from minute in 0.To(59, 15)</p>
<p>It&#8217;s much better perf-wise etc.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Revisiting the Alphabet Range with the latest .NET - Frank-Leonardo Quednau</title>
		<link>http://www.richardbushnell.net/2008/01/18/using-linqpad-to-create-a-time-selector-drop-down-list/comment-page-1/#comment-38</link>
		<dc:creator>Revisiting the Alphabet Range with the latest .NET - Frank-Leonardo Quednau</dc:creator>
		<pubDate>Sat, 19 Jan 2008 23:09:05 +0000</pubDate>
		<guid isPermaLink="false">http://richardbushnell.net/index.php/2008/01/18/using-linqpad-to-create-a-time-selector-drop-down-list/#comment-38</guid>
		<description>[...] Richard Bushnell was showing off how old problems can be implemented very concise with LINQ he also made use of an extension method to the int [...]</description>
		<content:encoded><![CDATA[<p>[...] Richard Bushnell was showing off how old problems can be implemented very concise with LINQ he also made use of an extension method to the int [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Frank Quednau</title>
		<link>http://www.richardbushnell.net/2008/01/18/using-linqpad-to-create-a-time-selector-drop-down-list/comment-page-1/#comment-37</link>
		<dc:creator>Frank Quednau</dc:creator>
		<pubDate>Sat, 19 Jan 2008 22:28:47 +0000</pubDate>
		<guid isPermaLink="false">http://richardbushnell.net/index.php/2008/01/18/using-linqpad-to-create-a-time-selector-drop-down-list/#comment-37</guid>
		<description>Very nice, methinks. There is massive potential in this technology, both in dealing with collections (it&#039;s becoming so concise) and dealing with mapping to domains beyond .NET objects. Apart from LINQ your &quot;To&quot; extension method inspired me to revisit my alphabet range object. Cheers!</description>
		<content:encoded><![CDATA[<p>Very nice, methinks. There is massive potential in this technology, both in dealing with collections (it&#8217;s becoming so concise) and dealing with mapping to domains beyond .NET objects. Apart from LINQ your &#8220;To&#8221; extension method inspired me to revisit my alphabet range object. Cheers!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

