<?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: Some C# obscurities</title>
	<atom:link href="http://lostechies.com/jimmybogard/2008/01/31/some-c-obscurities/feed/" rel="self" type="application/rss+xml" />
	<link>http://lostechies.com/jimmybogard/2008/01/31/some-c-obscurities/</link>
	<description>Strong opinions, weakly held</description>
	<lastBuildDate>Wed, 19 Jun 2013 17:39:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.2</generator>
	<item>
		<title>By: Jimmy Bogard</title>
		<link>http://lostechies.com/jimmybogard/2008/01/31/some-c-obscurities/#comment-169</link>
		<dc:creator>Jimmy Bogard</dc:creator>
		<pubDate>Fri, 01 Feb 2008 02:29:38 +0000</pubDate>
		<guid isPermaLink="false">/blogs/jimmy_bogard/archive/2008/01/30/some-c-obscurities.aspx#comment-169</guid>
		<description>@Peter

Obscurities was a bad choice in title, methinks....title about question marks seemed hokey.

I tend to use the conditional operator fairly sparingly.  The slightest amount of complexity in the statements kills any readability the operator gives me.</description>
		<content:encoded><![CDATA[<p>@Peter</p>
<p>Obscurities was a bad choice in title, methinks&#8230;.title about question marks seemed hokey.</p>
<p>I tend to use the conditional operator fairly sparingly.  The slightest amount of complexity in the statements kills any readability the operator gives me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jimmy Bogard</title>
		<link>http://lostechies.com/jimmybogard/2008/01/31/some-c-obscurities/#comment-168</link>
		<dc:creator>Jimmy Bogard</dc:creator>
		<pubDate>Fri, 01 Feb 2008 02:25:00 +0000</pubDate>
		<guid isPermaLink="false">/blogs/jimmy_bogard/archive/2008/01/30/some-c-obscurities.aspx#comment-168</guid>
		<description>@Uncle Bob

I only ask that for folks that tell me they&#039;re experts.  If anyone tells me they&#039;re an expert in anything, I&#039;ll test the limits of their knowledge.

I like to see the reactions to threats on egos.  Humility and patience coupled with passion are what I look for.  I don&#039;t care if they know what it means, I like to see if they react negatively &quot;oh NO ONE uses THAT feature!  Ask me a GOOD question!&quot; or positively &quot;Hmmm I&#039;ve never seen that.  Here&#039;s where it might be good, here&#039;s where it might be bad.&quot;  That tells me plenty if I can trust them to be in front of a customer or not.

If I ever proclaim myself an expert, I hope someone else has the kindness to knock me down a few notches.</description>
		<content:encoded><![CDATA[<p>@Uncle Bob</p>
<p>I only ask that for folks that tell me they&#8217;re experts.  If anyone tells me they&#8217;re an expert in anything, I&#8217;ll test the limits of their knowledge.</p>
<p>I like to see the reactions to threats on egos.  Humility and patience coupled with passion are what I look for.  I don&#8217;t care if they know what it means, I like to see if they react negatively &#8220;oh NO ONE uses THAT feature!  Ask me a GOOD question!&#8221; or positively &#8220;Hmmm I&#8217;ve never seen that.  Here&#8217;s where it might be good, here&#8217;s where it might be bad.&#8221;  That tells me plenty if I can trust them to be in front of a customer or not.</p>
<p>If I ever proclaim myself an expert, I hope someone else has the kindness to knock me down a few notches.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter Ritchie</title>
		<link>http://lostechies.com/jimmybogard/2008/01/31/some-c-obscurities/#comment-167</link>
		<dc:creator>Peter Ritchie</dc:creator>
		<pubDate>Thu, 31 Jan 2008 14:02:55 +0000</pubDate>
		<guid isPermaLink="false">/blogs/jimmy_bogard/archive/2008/01/30/some-c-obscurities.aspx#comment-167</guid>
		<description>The conditional operator with nullables can sometimes be a bit confusing.  For example, this causes an error:

DateTime? dateTime = n &gt; 1 null : Datetime.Now;

You must cast the null:
DateTime? dateTime = n &gt; 1 (DateTime?) : DateTime.Now;

Coditional operator, obscure?</description>
		<content:encoded><![CDATA[<p>The conditional operator with nullables can sometimes be a bit confusing.  For example, this causes an error:</p>
<p>DateTime? dateTime = n > 1 null : Datetime.Now;</p>
<p>You must cast the null:<br />
DateTime? dateTime = n > 1 (DateTime?) : DateTime.Now;</p>
<p>Coditional operator, obscure?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Your Uncle Bob</title>
		<link>http://lostechies.com/jimmybogard/2008/01/31/some-c-obscurities/#comment-166</link>
		<dc:creator>Your Uncle Bob</dc:creator>
		<pubDate>Thu, 31 Jan 2008 13:37:42 +0000</pubDate>
		<guid isPermaLink="false">/blogs/jimmy_bogard/archive/2008/01/30/some-c-obscurities.aspx#comment-166</guid>
		<description>Didn&#039;t know about the null coalescing operator.

Of course, if you put much stock in that as an interview question, I&#039;d be inclined to think you&#039;re just another blow-hard who likes to demonstrate his knowledge about semi-arcane topics during an interview, rather than finding out how qualified an applicant is. </description>
		<content:encoded><![CDATA[<p>Didn&#8217;t know about the null coalescing operator.</p>
<p>Of course, if you put much stock in that as an interview question, I&#8217;d be inclined to think you&#8217;re just another blow-hard who likes to demonstrate his knowledge about semi-arcane topics during an interview, rather than finding out how qualified an applicant is. </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe Ocampo</title>
		<link>http://lostechies.com/jimmybogard/2008/01/31/some-c-obscurities/#comment-165</link>
		<dc:creator>Joe Ocampo</dc:creator>
		<pubDate>Thu, 31 Jan 2008 05:29:13 +0000</pubDate>
		<guid isPermaLink="false">/blogs/jimmy_bogard/archive/2008/01/30/some-c-obscurities.aspx#comment-165</guid>
		<description>ReSharper kindly reminds me when I forget to use a ternary.  Gotta love it!</description>
		<content:encoded><![CDATA[<p>ReSharper kindly reminds me when I forget to use a ternary.  Gotta love it!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: silky</title>
		<link>http://lostechies.com/jimmybogard/2008/01/31/some-c-obscurities/#comment-164</link>
		<dc:creator>silky</dc:creator>
		<pubDate>Thu, 31 Jan 2008 03:10:00 +0000</pubDate>
		<guid isPermaLink="false">/blogs/jimmy_bogard/archive/2008/01/30/some-c-obscurities.aspx#comment-164</guid>
		<description>i wouldn&#039;t call the ternary operated &#039;obscure&#039; by any means.

also note that you can divide by zero legitimately, if you use doubles.</description>
		<content:encoded><![CDATA[<p>i wouldn&#8217;t call the ternary operated &#8216;obscure&#8217; by any means.</p>
<p>also note that you can divide by zero legitimately, if you use doubles.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
