<?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: C# Byte Iteration Question</title>
	<atom:link href="http://kossovsky.net/index.php/2009/07/csharp-byte-iteration-question/feed/" rel="self" type="application/rss+xml" />
	<link>http://kossovsky.net/index.php/2009/07/csharp-byte-iteration-question/</link>
	<description>C# Code Snippets, ASP.NET Code Samples, .NET Tips and Tricks</description>
	<lastBuildDate>Mon, 23 Aug 2010 22:58:45 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: SjP</title>
		<link>http://kossovsky.net/index.php/2009/07/csharp-byte-iteration-question/comment-page-1/#comment-278</link>
		<dc:creator>SjP</dc:creator>
		<pubDate>Wed, 29 Jul 2009 20:01:14 +0000</pubDate>
		<guid isPermaLink="false">http://kossovsky.net/?p=473#comment-278</guid>
		<description>&lt;a href=&quot;#comment-40&quot; rel=&quot;nofollow&quot;&gt;@mmp  &lt;/a&gt; 
Why does it produce the exception in the first place?</description>
		<content:encoded><![CDATA[<p><a href="#comment-40" rel="nofollow">@mmp  </a><br />
Why does it produce the exception in the first place?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Twitted by kossovskynet</title>
		<link>http://kossovsky.net/index.php/2009/07/csharp-byte-iteration-question/comment-page-1/#comment-59</link>
		<dc:creator>Twitted by kossovskynet</dc:creator>
		<pubDate>Sun, 12 Jul 2009 23:32:14 +0000</pubDate>
		<guid isPermaLink="false">http://kossovsky.net/?p=473#comment-59</guid>
		<description>[...] This post was Twitted by kossovskynet [...]</description>
		<content:encoded><![CDATA[<div style="color:#008200">
<p>[...] This post was Twitted by kossovskynet [...]</p>
</div>
]]></content:encoded>
	</item>
	<item>
		<title>By: C# Byte Iteration Question &#171; Jasper Blog</title>
		<link>http://kossovsky.net/index.php/2009/07/csharp-byte-iteration-question/comment-page-1/#comment-44</link>
		<dc:creator>C# Byte Iteration Question &#171; Jasper Blog</dc:creator>
		<pubDate>Sun, 12 Jul 2009 07:51:05 +0000</pubDate>
		<guid isPermaLink="false">http://kossovsky.net/?p=473#comment-44</guid>
		<description>[...] Read more: .NET Tips and Tricks [...]</description>
		<content:encoded><![CDATA[<div style="color:#008200">
<p>[...] Read more: .NET Tips and Tricks [...]</p>
</div>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kossovsky Alexander</title>
		<link>http://kossovsky.net/index.php/2009/07/csharp-byte-iteration-question/comment-page-1/#comment-41</link>
		<dc:creator>Kossovsky Alexander</dc:creator>
		<pubDate>Fri, 10 Jul 2009 10:58:42 +0000</pubDate>
		<guid isPermaLink="false">http://kossovsky.net/?p=473#comment-41</guid>
		<description>That is what my blog is about. Reminding all of you (and my self) all the the stuff we shouldn&#039;t forget</description>
		<content:encoded><![CDATA[<p>That is what my blog is about. Reminding all of you (and my self) all the the stuff we shouldn&#8217;t forget</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mmp</title>
		<link>http://kossovsky.net/index.php/2009/07/csharp-byte-iteration-question/comment-page-1/#comment-40</link>
		<dc:creator>mmp</dc:creator>
		<pubDate>Fri, 10 Jul 2009 10:57:32 +0000</pubDate>
		<guid isPermaLink="false">http://kossovsky.net/?p=473#comment-40</guid>
		<description>&lt;a href=&quot;#comment-35&quot; rel=&quot;nofollow&quot;&gt;@Mio &lt;/a&gt; 
Actually, you get an &#039;out of memory&#039; exception not because of the &#039;for&#039; structure itself, but because of Console.Write(b).</description>
		<content:encoded><![CDATA[<p><a href="#comment-35" rel="nofollow">@Mio </a><br />
Actually, you get an &#8216;out of memory&#8217; exception not because of the &#8216;for&#8217; structure itself, but because of Console.Write(b).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kossovsky Alexander</title>
		<link>http://kossovsky.net/index.php/2009/07/csharp-byte-iteration-question/comment-page-1/#comment-39</link>
		<dc:creator>Kossovsky Alexander</dc:creator>
		<pubDate>Fri, 10 Jul 2009 10:52:37 +0000</pubDate>
		<guid isPermaLink="false">http://kossovsky.net/?p=473#comment-39</guid>
		<description>True
&lt;pre class=&quot;c-sharp&quot; name=&quot;code&quot;&gt; 
checked {
    for (byte b = byte.MinValue; b &lt;= byte.MaxValue; b++)
         Console.Write(b);
}
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>True</p>
<pre class="c-sharp" name="code">
checked {
    for (byte b = byte.MinValue; b < = byte.MaxValue; b++)
         Console.Write(b);
}
</pre>
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: mmp</title>
		<link>http://kossovsky.net/index.php/2009/07/csharp-byte-iteration-question/comment-page-1/#comment-38</link>
		<dc:creator>mmp</dc:creator>
		<pubDate>Fri, 10 Jul 2009 10:43:04 +0000</pubDate>
		<guid isPermaLink="false">http://kossovsky.net/?p=473#comment-38</guid>
		<description>&lt;a href=&quot;#comment-36&quot; rel=&quot;nofollow&quot;&gt;@Kossovsky Alexander &lt;/a&gt; 
Add &quot;checked {}&quot; expression? BTW thank you for reminding about this feature. It surely indicates that I have to refresh my knowledge on C# pecularities.</description>
		<content:encoded><![CDATA[<p><a href="#comment-36" rel="nofollow">@Kossovsky Alexander </a><br />
Add &#8220;checked {}&#8221; expression? BTW thank you for reminding about this feature. It surely indicates that I have to refresh my knowledge on C# pecularities.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe Chung</title>
		<link>http://kossovsky.net/index.php/2009/07/csharp-byte-iteration-question/comment-page-1/#comment-37</link>
		<dc:creator>Joe Chung</dc:creator>
		<pubDate>Fri, 10 Jul 2009 10:38:22 +0000</pubDate>
		<guid isPermaLink="false">http://kossovsky.net/?p=473#comment-37</guid>
		<description>Put the for loop in a checked block.</description>
		<content:encoded><![CDATA[<p>Put the for loop in a checked block.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kossovsky Alexander</title>
		<link>http://kossovsky.net/index.php/2009/07/csharp-byte-iteration-question/comment-page-1/#comment-36</link>
		<dc:creator>Kossovsky Alexander</dc:creator>
		<pubDate>Fri, 10 Jul 2009 09:57:59 +0000</pubDate>
		<guid isPermaLink="false">http://kossovsky.net/?p=473#comment-36</guid>
		<description>Correct :) And now the second part. 
What do you have to change to throw an overflow exception in the above code ?</description>
		<content:encoded><![CDATA[<p>Correct <img src='http://kossovsky.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  And now the second part.<br />
What do you have to change to throw an overflow exception in the above code ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mio</title>
		<link>http://kossovsky.net/index.php/2009/07/csharp-byte-iteration-question/comment-page-1/#comment-35</link>
		<dc:creator>Mio</dc:creator>
		<pubDate>Fri, 10 Jul 2009 09:53:10 +0000</pubDate>
		<guid isPermaLink="false">http://kossovsky.net/?p=473#comment-35</guid>
		<description>Forever...until you stop it or get out of memory exception :)</description>
		<content:encoded><![CDATA[<p>Forever&#8230;until you stop it or get out of memory exception <img src='http://kossovsky.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
