<?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"
	>
<channel>
	<title>Comments on: What&#8217;s the difference between CONST and READONLY in .Net?</title>
	<atom:link href="http://www.carlj.ca/2009/03/09/whats-the-difference-between-const-and-readonly-in-net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.carlj.ca/2009/03/09/whats-the-difference-between-const-and-readonly-in-net/</link>
	<description></description>
	<pubDate>Fri, 12 Mar 2010 15:25:06 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: Steve Goguen</title>
		<link>http://www.carlj.ca/2009/03/09/whats-the-difference-between-const-and-readonly-in-net/#comment-11166</link>
		<dc:creator>Steve Goguen</dc:creator>
		<pubDate>Tue, 17 Mar 2009 17:33:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.carlj.ca/2009/03/09/whats-the-difference-between-const-and-readonly-in-net/#comment-11166</guid>
		<description>Conceptually, the biggest difference between the two is:

readonly - Use for defining immutable objects.  This is big in functional programming.

const - For creating constants.</description>
		<content:encoded><![CDATA[<p>Conceptually, the biggest difference between the two is:</p>
<p>readonly - Use for defining immutable objects.  This is big in functional programming.</p>
<p>const - For creating constants.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Weekly Web Nuggets #55 : Code Monkey Labs</title>
		<link>http://www.carlj.ca/2009/03/09/whats-the-difference-between-const-and-readonly-in-net/#comment-11161</link>
		<dc:creator>Weekly Web Nuggets #55 : Code Monkey Labs</dc:creator>
		<pubDate>Sun, 15 Mar 2009 03:00:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.carlj.ca/2009/03/09/whats-the-difference-between-const-and-readonly-in-net/#comment-11161</guid>
		<description>[...] What’s the Difference Between CONST and READONLY in .NET: Carl LeBel digs into the difference between these similar, yet distinct, keywords. [...]</description>
		<content:encoded><![CDATA[<p>[...] What’s the Difference Between CONST and READONLY in .NET: Carl LeBel digs into the difference between these similar, yet distinct, keywords. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Links</title>
		<link>http://www.carlj.ca/2009/03/09/whats-the-difference-between-const-and-readonly-in-net/#comment-11160</link>
		<dc:creator>Links</dc:creator>
		<pubDate>Fri, 13 Mar 2009 08:50:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.carlj.ca/2009/03/09/whats-the-difference-between-const-and-readonly-in-net/#comment-11160</guid>
		<description>[...] Carl J » What’s the difference between CONST and READONLY in .Net? [...]</description>
		<content:encoded><![CDATA[<p>[...] Carl J » What’s the difference between CONST and READONLY in .Net? [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Usman Masood</title>
		<link>http://www.carlj.ca/2009/03/09/whats-the-difference-between-const-and-readonly-in-net/#comment-11158</link>
		<dc:creator>Usman Masood</dc:creator>
		<pubDate>Thu, 12 Mar 2009 06:08:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.carlj.ca/2009/03/09/whats-the-difference-between-const-and-readonly-in-net/#comment-11158</guid>
		<description>Nice explanation like it. :)</description>
		<content:encoded><![CDATA[<p>Nice explanation like it. <img src='http://www.carlj.ca/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Reflective Perspective - Chris Alcock &#187; The Morning Brew #304</title>
		<link>http://www.carlj.ca/2009/03/09/whats-the-difference-between-const-and-readonly-in-net/#comment-11155</link>
		<dc:creator>Reflective Perspective - Chris Alcock &#187; The Morning Brew #304</dc:creator>
		<pubDate>Wed, 11 Mar 2009 06:59:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.carlj.ca/2009/03/09/whats-the-difference-between-const-and-readonly-in-net/#comment-11155</guid>
		<description>[...] What&#8217;s the difference between CONST and READONLY in .Net? - Carl J explores the meaning of the Const and ReadOnly keywords in .NET - be sure to read the comments for some more information. [...]</description>
		<content:encoded><![CDATA[<p>[...] What&#8217;s the difference between CONST and READONLY in .Net? - Carl J explores the meaning of the Const and ReadOnly keywords in .NET - be sure to read the comments for some more information. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Carl J</title>
		<link>http://www.carlj.ca/2009/03/09/whats-the-difference-between-const-and-readonly-in-net/#comment-11153</link>
		<dc:creator>Carl J</dc:creator>
		<pubDate>Tue, 10 Mar 2009 20:33:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.carlj.ca/2009/03/09/whats-the-difference-between-const-and-readonly-in-net/#comment-11153</guid>
		<description>While I have no stats to agree or disagree with you, I would assume that using const is faster because the value is specified before hand, and not set when the object is initialized. However, the difference is so minuscule that I can't see it making any difference.
Also, that's the trade off of using one or another, optimization vs flexibility.</description>
		<content:encoded><![CDATA[<p>While I have no stats to agree or disagree with you, I would assume that using const is faster because the value is specified before hand, and not set when the object is initialized. However, the difference is so minuscule that I can&#8217;t see it making any difference.<br />
Also, that&#8217;s the trade off of using one or another, optimization vs flexibility.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bart Czernicki</title>
		<link>http://www.carlj.ca/2009/03/09/whats-the-difference-between-const-and-readonly-in-net/#comment-11152</link>
		<dc:creator>Bart Czernicki</dc:creator>
		<pubDate>Tue, 10 Mar 2009 19:53:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.carlj.ca/2009/03/09/whats-the-difference-between-const-and-readonly-in-net/#comment-11152</guid>
		<description>Using const variables is also faster.  Less IL gets created.</description>
		<content:encoded><![CDATA[<p>Using const variables is also faster.  Less IL gets created.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason Young</title>
		<link>http://www.carlj.ca/2009/03/09/whats-the-difference-between-const-and-readonly-in-net/#comment-11150</link>
		<dc:creator>Jason Young</dc:creator>
		<pubDate>Tue, 10 Mar 2009 12:41:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.carlj.ca/2009/03/09/whats-the-difference-between-const-and-readonly-in-net/#comment-11150</guid>
		<description>If you use ReSharper, it will tell you when fields can be marked as read-only. I like getting the recommendation, as it makes your code as strict and clear as possible.</description>
		<content:encoded><![CDATA[<p>If you use ReSharper, it will tell you when fields can be marked as read-only. I like getting the recommendation, as it makes your code as strict and clear as possible.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
