<?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: Order of function parameters</title>
	<atom:link href="http://www.databasesandlife.com/order-of-function-parameters/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.databasesandlife.com/order-of-function-parameters/</link>
	<description>Adrian Smith's blog</description>
	<lastBuildDate>Wed, 14 Jul 2010 07:18:51 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: RJ</title>
		<link>http://www.databasesandlife.com/order-of-function-parameters/comment-page-1/#comment-5766</link>
		<dc:creator>RJ</dc:creator>
		<pubDate>Mon, 20 Jul 2009 05:22:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.databasesandlife.com/?p=339#comment-5766</guid>
		<description>&lt;i&gt;Perhaps a bit of a ridiculous question, given that it clearly doesn’t matter.&lt;/i&gt;
Not EXACTLY true, but:
&lt;b&gt;place the most constant parameters as left-most as possible&lt;/b&gt;
is absolutely right.
Most (if not all) languages that support default parameters require the default parameters to be &#039;on the right&#039; which are usually the optional or unimportant parameters.
OpenFile(string location, FileMode mode = FileMode.Read)
DrawImage(Buffer b, Image i, int x = 0, int y = 0)

In this case, the order DOES matter, however it still remains that the most constant (or important) parameters are required to be on the left; it *IS* a good practice to follow.</description>
		<content:encoded><![CDATA[<p><i>Perhaps a bit of a ridiculous question, given that it clearly doesn’t matter.</i><br />
Not EXACTLY true, but:<br />
<b>place the most constant parameters as left-most as possible</b><br />
is absolutely right.<br />
Most (if not all) languages that support default parameters require the default parameters to be &#8216;on the right&#8217; which are usually the optional or unimportant parameters.<br />
OpenFile(string location, FileMode mode = FileMode.Read)<br />
DrawImage(Buffer b, Image i, int x = 0, int y = 0)</p>
<p>In this case, the order DOES matter, however it still remains that the most constant (or important) parameters are required to be on the left; it *IS* a good practice to follow.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
