<?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# version 3.0</title>
	<atom:link href="http://blogs.linux.ie/balor/2006/03/08/c-version-30/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.linux.ie/balor/2006/03/08/c-version-30/</link>
	<description>We eat cats whilst you code.</description>
	<lastBuildDate>Thu, 17 May 2012 00:31:11 +0100</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
	<item>
		<title>By: Albert</title>
		<link>http://blogs.linux.ie/balor/2006/03/08/c-version-30/comment-page-1/#comment-112413</link>
		<dc:creator>Albert</dc:creator>
		<pubDate>Sun, 20 Nov 2011 23:26:04 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.linux.ie/balor/2006/03/08/c-version-30/#comment-112413</guid>
		<description>Hi and thanks for spending some time to explain the terminlogy towards the learners!</description>
		<content:encoded><![CDATA[<p>Hi and thanks for spending some time to explain the terminlogy towards the learners!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Des Traynor</title>
		<link>http://blogs.linux.ie/balor/2006/03/08/c-version-30/comment-page-1/#comment-177</link>
		<dc:creator>Des Traynor</dc:creator>
		<pubDate>Fri, 10 Mar 2006 12:41:28 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.linux.ie/balor/2006/03/08/c-version-30/#comment-177</guid>
		<description>Dave, 
a) No, a lot of banks and institutions use &quot;in house&quot; programming languages specifically to implement this type of thing. For example, they may want to make it so that every time a String value is displayed on screen, it&#039;s integrity must be checked by default. They have 2 ways of doing this
a) Check every piece of code manually
b) Implement a new class (an adapter if you like), but this means that the newcomers have to be trained in on the nuances of this particular dialect of say, the String class. 

Basically, this allows you to create your own defaults in a project, while using standard code. Its a nice feature, and I don&#039;t see the downside of it. I&#039;m sure men with beards and pipes will question language purity here, but no one will listen, cause those people rarely leave their office/porch/rocking chair. 

Your implication that var will produce more bugs is akin to saying that Ruby is inherently a buggier language than Java, as you don&#039;t *have* to specify a type. As the type conversion is done at compile time, I believe the compiler can spot any type mismatches, through static checking.  i.e. a piece of code should contain 
a) var j=&quot;Hello&quot;;
b) j=new GStreamerObject(); 
at different points in the code. It&#039;s possible to detect this through static checking. (No, this is NOT the Halting Problem, it can be checked in the source)</description>
		<content:encoded><![CDATA[<p>Dave,<br />
a) No, a lot of banks and institutions use &#8220;in house&#8221; programming languages specifically to implement this type of thing. For example, they may want to make it so that every time a String value is displayed on screen, it&#8217;s integrity must be checked by default. They have 2 ways of doing this<br />
a) Check every piece of code manually<br />
b) Implement a new class (an adapter if you like), but this means that the newcomers have to be trained in on the nuances of this particular dialect of say, the String class. </p>
<p>Basically, this allows you to create your own defaults in a project, while using standard code. Its a nice feature, and I don&#8217;t see the downside of it. I&#8217;m sure men with beards and pipes will question language purity here, but no one will listen, cause those people rarely leave their office/porch/rocking chair. </p>
<p>Your implication that var will produce more bugs is akin to saying that Ruby is inherently a buggier language than Java, as you don&#8217;t *have* to specify a type. As the type conversion is done at compile time, I believe the compiler can spot any type mismatches, through static checking.  i.e. a piece of code should contain<br />
a) var j=&#8221;Hello&#8221;;<br />
b) j=new GStreamerObject();<br />
at different points in the code. It&#8217;s possible to detect this through static checking. (No, this is NOT the Halting Problem, it can be checked in the source)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave</title>
		<link>http://blogs.linux.ie/balor/2006/03/08/c-version-30/comment-page-1/#comment-176</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Fri, 10 Mar 2006 11:49:19 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.linux.ie/balor/2006/03/08/c-version-30/#comment-176</guid>
		<description>Shouldn&#039;t use be using patterns such as an adapator class if want to be using GString instead of String.

As for the var value, I think it could preahps lead to more bugs within the code by people assigning the wrong value type to var.</description>
		<content:encoded><![CDATA[<p>Shouldn&#8217;t use be using patterns such as an adapator class if want to be using GString instead of String.</p>
<p>As for the var value, I think it could preahps lead to more bugs within the code by people assigning the wrong value type to var.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Des Traynor</title>
		<link>http://blogs.linux.ie/balor/2006/03/08/c-version-30/comment-page-1/#comment-175</link>
		<dc:creator>Des Traynor</dc:creator>
		<pubDate>Thu, 09 Mar 2006 14:41:50 +0000</pubDate>
		<guid isPermaLink="false">http://blogs.linux.ie/balor/2006/03/08/c-version-30/#comment-175</guid>
		<description>Mono is not done right in my opinion. It&#039;s not easy enough to get to grips with and their is fuck all useful books on how to get started with it. 


I think the var is pretty weird alright, but in fairness, I don&#039;t think it will matter. There is pretty much no value to it, but I suppose to some extent it future proofs code. i.e. if they change the class String and call it say... GString, or String32, then it&#039;ll break any of your code that has

String des=&quot;hello&quot;;
but will not break 
var des=&quot;hello&quot;;

I like  the new Object initializer, and I hate the new anonymous types, that said I hate anonymous methods as well . The extensions are pretty handy too. I&#039;d love to be able to do that with Java Swing stuff. I.e. a JFrame should  close when you click the X by default.</description>
		<content:encoded><![CDATA[<p>Mono is not done right in my opinion. It&#8217;s not easy enough to get to grips with and their is fuck all useful books on how to get started with it. </p>
<p>I think the var is pretty weird alright, but in fairness, I don&#8217;t think it will matter. There is pretty much no value to it, but I suppose to some extent it future proofs code. i.e. if they change the class String and call it say&#8230; GString, or String32, then it&#8217;ll break any of your code that has</p>
<p>String des=&#8221;hello&#8221;;<br />
but will not break<br />
var des=&#8221;hello&#8221;;</p>
<p>I like  the new Object initializer, and I hate the new anonymous types, that said I hate anonymous methods as well . The extensions are pretty handy too. I&#8217;d love to be able to do that with Java Swing stuff. I.e. a JFrame should  close when you click the X by default.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
