<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" media="screen" href="/styles/xslt/rss.xslt"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:c9="http://channel9.msdn.com">
<channel>
	<title>Channel 9 - Discussions by atehrani</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/Niners/atehrani/Discussions/RSS"></atom:link>
	<image>
		<url>http://mschnlnine.vo.llnwd.net/d1/Dev/App_Themes/C9/images/feedimage.png</url>
		<title>Channel 9 - Discussions by atehrani</title>
		<link>http://channel9.msdn.com/Niners/atehrani/Discussions</link>
	</image>
	<description>Channel 9 keeps you up to date with the latest news and behind the scenes info from Microsoft that developers love to keep up with. From LINQ to SilverLight – Watch videos and hear about all the cool technologies coming and the people behind them.</description>
	<link>http://channel9.msdn.com/Niners/atehrani/Discussions</link>
	<language>en</language>
	<pubDate>Fri, 24 May 2013 05:30:01 GMT</pubDate>
	<lastBuildDate>Fri, 24 May 2013 05:30:01 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<c9:totalResults>0</c9:totalResults>
	<c9:pageCount>0</c9:pageCount>
	<c9:pageSize>0</c9:pageSize>
	<item>
		<title>Coffeehouse - OpenSolaris</title>
		<description><![CDATA[<p>Yes it does have some ways to go (particularly in driver support), but Sun has been working really hard on it recently. What they have come up with in a short amount of time is impressive.<br>
<br>
At first one may question why not just use Linux. Besides the mentioned&nbsp;feature benefits with Solaris (ZFS, Dtrace, zones). The other thing Solaris brings is a stable ABI. This is contrast to Linux, in which they feel free to change (break) things.<br>
<br>
Once Indiana matures a bit more, I will be seriously considering making it my primary OS.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/258773-OpenSolaris/7f71027587ec4d319b859deb0025add3#7f71027587ec4d319b859deb0025add3</link>
		<pubDate>Wed, 07 Nov 2007 01:56:57 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/258773-OpenSolaris/7f71027587ec4d319b859deb0025add3#7f71027587ec4d319b859deb0025add3</guid>
		<dc:creator>atehrani</dc:creator>
		<slash:comments>10</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/atehrani/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - other fun stuff about exceptions</title>
		<description><![CDATA[<p>Far too many times I see incorrect exception rethrowing in C#.<br /><br /><br />&quot;Re-throwing&quot; an exception like this is incorrect, as the stack trace will be reset.<br /><br /><font face="Courier New">catch ( FooException ex )<br />{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; throw ex; // WRONG <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-6.gif' alt='Sad' /><br />}</font><br /><br /><br />This is the correct way to rethrow an exception.<br /><br /><font face="Courier New">catch ( FooException ex )<br />{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; throw; // CORRECT <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif' alt='Smiley' /><br />}</font><br /><br />Please note that a&nbsp;trace of the stack is only taken when the &quot;throw&quot; keyword is executed. In Java the stack trace is taken when an exception is instantiated. This is a subtle but large difference.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/258518-other-fun-stuff-about-exceptions/6ad83e07495840c489199df90103c9c1#6ad83e07495840c489199df90103c9c1</link>
		<pubDate>Sat, 27 Oct 2007 00:24:27 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/258518-other-fun-stuff-about-exceptions/6ad83e07495840c489199df90103c9c1#6ad83e07495840c489199df90103c9c1</guid>
		<dc:creator>atehrani</dc:creator>
		<slash:comments>8</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/atehrani/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Hibernate</title>
		<description><![CDATA[<p>Open the command prompt with admin privledges and it should work.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/255532-Hibernate/ce2f467a281845ef90a09dec0087d154#ce2f467a281845ef90a09dec0087d154</link>
		<pubDate>Sat, 16 Jun 2007 01:08:08 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/255532-Hibernate/ce2f467a281845ef90a09dec0087d154#ce2f467a281845ef90a09dec0087d154</guid>
		<dc:creator>atehrani</dc:creator>
		<slash:comments>3</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/atehrani/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - object pass by value/reference</title>
		<description><![CDATA[<p>W3bbo,<br>
<br>
&nbsp;&nbsp;&nbsp;Your example is wrong. Take a look at this example (this time using primitives)<br>
<br>
public class PassByQuestion<br>
{<br>
&nbsp;&nbsp;&nbsp; public static void increment(int x)<br>
&nbsp;&nbsp;&nbsp; {<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; x&#43;&#43;;<br>
&nbsp;&nbsp;&nbsp; }<br>
&nbsp;&nbsp;&nbsp; <br>
&nbsp;&nbsp;&nbsp; public static void main(String[] args)<br>
&nbsp;&nbsp;&nbsp; {<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; int i = 42;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; System.out.println(i);<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; increment(i);<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; System.out.println(i);<br>
&nbsp;&nbsp;&nbsp; }<br>
}<br>
<br>
Both outputs are 42, because it is pass-by-value.<br>
<br>
It is best demonstrated using C# (as it supports both pass-by-value and pass-by-reference).<br>
<br>
using System;<br>
using System.Collections.Generic;<br>
using System.Text;</p>
<p>namespace Test<br>
{<br>
&nbsp;&nbsp;&nbsp; public class PassByQuestion<br>
&nbsp;&nbsp;&nbsp; {<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; public static void increment_byvalue(int x)<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; x&#43;&#43;;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; public static void increment_byref(ref int x)<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; x&#43;&#43;;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; public static void Main()<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; int i = 42;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Console.Out.WriteLine(i);<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; increment_byvalue(i);<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Console.Out.WriteLine(i);<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; increment_byref(ref i);<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Console.Out.WriteLine(i);<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br>
&nbsp;&nbsp;&nbsp; }<br>
}<br>
</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/254818-object-pass-by-valuereference/5e77523603b54da9bb619dec007bf56e#5e77523603b54da9bb619dec007bf56e</link>
		<pubDate>Sun, 20 May 2007 00:27:16 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/254818-object-pass-by-valuereference/5e77523603b54da9bb619dec007bf56e#5e77523603b54da9bb619dec007bf56e</guid>
		<dc:creator>atehrani</dc:creator>
		<slash:comments>49</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/atehrani/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - object pass by value/reference</title>
		<description><![CDATA[<p>W3bbo,<br>
<br>
&nbsp;&nbsp;&nbsp;Again, Java is pass-by-value. The &quot;utlimate&quot; proof would be to create a method to swap integer values. Please attempt to write one (hint: you cannot).<br>
<br>
Besides, if I were to take your word or James Gosling, I think it would be best to take James Goslings word. He did help create the Java language after all.<br>
<br>
Please go and actually <strong>read</strong> the articles I linked to. You will soon understand why you are wrong.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/254818-object-pass-by-valuereference/00da0ca6690a48a28e749dec007bf53c#00da0ca6690a48a28e749dec007bf53c</link>
		<pubDate>Sun, 20 May 2007 00:14:19 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/254818-object-pass-by-valuereference/00da0ca6690a48a28e749dec007bf53c#00da0ca6690a48a28e749dec007bf53c</guid>
		<dc:creator>atehrani</dc:creator>
		<slash:comments>49</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/atehrani/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - object pass by value/reference</title>
		<description><![CDATA[<p>Java is pass by value, period. The JSL states it and the exam for SCJP states it. I don't understand why there is such confusion here.<br>
<br>
public class PassByQuestion<br>
{<br>
&nbsp;public static void makeNull(Object o)<br>
&nbsp;{<br>
&nbsp;&nbsp;o = null;<br>
&nbsp;}</p>
<p>&nbsp;public static void main(String[] args)<br>
&nbsp;{<br>
&nbsp;&nbsp;Object obj = new Object();<br>
&nbsp;&nbsp;makeNull(obj);<br>
&nbsp;&nbsp;System.out.println(obj == null);<br>
&nbsp;}<br>
}<br>
<br>
This program outputs false, if Java was pass by ref, it would output true.<br>
<br>
Also, try writing a simple method to swap two integer variable values (hint, you cannot do it in Java because it is pass by value).<br>
<br>
To quote the JLS 8.4.1<br>
<br>
&quot;When the method or constructor is invoked, the values of the actual argument expressions
<strong>initialize newly created parameter variables</strong>, each of the declared
<em>Type,</em> before execution of the body of the method or constructor.&quot;<br>
<br>
Finally to quote James Gosling (&quot;father&quot; of Java)<br>
<br>
Ken Arnold and James Gosling, authors of <i>The Java Programming Language, Second Edition</i>, say it best in section 2.6.1: &quot;There is exactly one parameter passing mode in Java --
<strong>pass by value</strong> -- and that helps keep things simple.&quot;<br>
<br>
<a href="http://www-128.ibm.com/developerworks/java/library/j-passbyval/">http://www-128.ibm.com/developerworks/java/library/j-passbyval/</a></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/254818-object-pass-by-valuereference/f63b14e6f01c4ea7902b9dec007bf489#f63b14e6f01c4ea7902b9dec007bf489</link>
		<pubDate>Sat, 19 May 2007 19:12:14 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/254818-object-pass-by-valuereference/f63b14e6f01c4ea7902b9dec007bf489#f63b14e6f01c4ea7902b9dec007bf489</guid>
		<dc:creator>atehrani</dc:creator>
		<slash:comments>49</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/atehrani/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - object pass by value/reference</title>
		<description><![CDATA[<p>wkempf is correct. Java is pass by value always! C# is pass by value, unless you specify that you want to pass by reference using the ref and out keywords.<br>
<br>
Read the following article for more info<br>
<a href="http://javadude.com/articles/passbyvalue.htm">http://javadude.com/articles/passbyvalue.htm</a></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/254818-object-pass-by-valuereference/535dfa0ddcab45899a649dec007bf259#535dfa0ddcab45899a649dec007bf259</link>
		<pubDate>Fri, 18 May 2007 22:59:55 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/254818-object-pass-by-valuereference/535dfa0ddcab45899a649dec007bf259#535dfa0ddcab45899a649dec007bf259</guid>
		<dc:creator>atehrani</dc:creator>
		<slash:comments>49</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/atehrani/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Microsoft takes on the FREE World</title>
		<description><![CDATA[<p>Jonathan Schwartz's (CEO of Sun) has an indirect response to this announcement. Worth a read IMHO.<br>
<a href="http://blogs.sun.com/jonathan/entry/what_we_did">http://blogs.sun.com/jonathan/entry/what_we_did</a></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/254702-Microsoft-takes-on-the-FREE-World/a067342a72bc45debce49dec007a3213#a067342a72bc45debce49dec007a3213</link>
		<pubDate>Tue, 15 May 2007 17:41:57 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/254702-Microsoft-takes-on-the-FREE-World/a067342a72bc45debce49dec007a3213#a067342a72bc45debce49dec007a3213</guid>
		<dc:creator>atehrani</dc:creator>
		<slash:comments>107</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/atehrani/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Microsoft takes on the FREE World</title>
		<description><![CDATA[<p>This shows how desperate Microsoft is getting. Instead of competing by offering better value, they instead want to provoke a legal battle.</p>
<p>The irony here is that most Microsoft products are copies themselves! Most of their products are not entirely original.</p>
<p>Do as I say, not as I do...</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/254702-Microsoft-takes-on-the-FREE-World/c5d20bd31a46459590609dec007a2551#c5d20bd31a46459590609dec007a2551</link>
		<pubDate>Mon, 14 May 2007 08:45:39 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/254702-Microsoft-takes-on-the-FREE-World/c5d20bd31a46459590609dec007a2551#c5d20bd31a46459590609dec007a2551</guid>
		<dc:creator>atehrani</dc:creator>
		<slash:comments>107</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/atehrani/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Launching a SWT app in windows</title>
		<description><![CDATA[<p>Use javaw<br>
<br>
<p>The <b>javaw</b> command is identical to <b>java</b>, except that with <b>javaw</b> there is no associated console window. Use
<b>javaw</b> when you don't want a command prompt window to appear. The <b>javaw</b> launcher will, however, display a dialog box with error information if a launch fails for some reason.<br>
<br>
Also you can also prefix your command with &quot;start&quot; in your batch file to open up another console window.</p></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/254201-Launching-a-SWT-app-in-windows/29edfe7294f74647942b9dea015714d8#29edfe7294f74647942b9dea015714d8</link>
		<pubDate>Fri, 20 Apr 2007 17:46:58 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/254201-Launching-a-SWT-app-in-windows/29edfe7294f74647942b9dea015714d8#29edfe7294f74647942b9dea015714d8</guid>
		<dc:creator>atehrani</dc:creator>
		<slash:comments>3</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/atehrani/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Open Source Software</title>
		<description><![CDATA[<p>Apache (almost all of their stuff)<br>
<br>
Java</p>
<p>Solaris</p>
<p>gVIM</p>
<p>SQLuirrel</p>
<p>SOAP UI</p>
<p>Netbeans</p>
<p>Eclipse</p>
<p>Mozilla/Firefox</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/253906-Open-Source-Software/82f1be27df9048cbaa959dec006fc53c#82f1be27df9048cbaa959dec006fc53c</link>
		<pubDate>Wed, 11 Apr 2007 01:01:02 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/253906-Open-Source-Software/82f1be27df9048cbaa959dec006fc53c#82f1be27df9048cbaa959dec006fc53c</guid>
		<dc:creator>atehrani</dc:creator>
		<slash:comments>33</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/atehrani/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - free file compare software?</title>
		<description><![CDATA[<p>windiff is okay<br>
<br>
or use the diff that comes with &lt;insert major version control software&gt; (Subversion, Perforce, VSS..etc)</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/253909-free-file-compare-software/51eeb241fd534c4db8bd9dea015642f9#51eeb241fd534c4db8bd9dea015642f9</link>
		<pubDate>Wed, 11 Apr 2007 00:55:15 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/253909-free-file-compare-software/51eeb241fd534c4db8bd9dea015642f9#51eeb241fd534c4db8bd9dea015642f9</guid>
		<dc:creator>atehrani</dc:creator>
		<slash:comments>11</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/atehrani/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - :D</title>
		<description><![CDATA[<p>What is the e-mail for the team? I'd like one myself!</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/253574-D/f7d73520a19e4ab0ab2a9dec006af27a#f7d73520a19e4ab0ab2a9dec006af27a</link>
		<pubDate>Thu, 29 Mar 2007 18:44:37 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/253574-D/f7d73520a19e4ab0ab2a9dec006af27a#f7d73520a19e4ab0ab2a9dec006af27a</guid>
		<dc:creator>atehrani</dc:creator>
		<slash:comments>7</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/atehrani/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - No Hotmail via Outlook?</title>
		<description><![CDATA[<p>I had the same problem when I upgraded to IE7. Accessing Hotmail using Outlook Express broke. I have been unable to resolve the issue.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/252516-No-Hotmail-via-Outlook/18aeb2c4372d4622870f9dec005bb16e#18aeb2c4372d4622870f9dec005bb16e</link>
		<pubDate>Tue, 20 Feb 2007 19:58:31 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/252516-No-Hotmail-via-Outlook/18aeb2c4372d4622870f9dec005bb16e#18aeb2c4372d4622870f9dec005bb16e</guid>
		<dc:creator>atehrani</dc:creator>
		<slash:comments>8</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/atehrani/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Best Free RSS Feed Reader?</title>
		<description><![CDATA[<p><a href="http://www.rssowl.org">http://www.rssowl.org</a></p>
<p>Best RSS reader IMO</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/252164-Best-Free-RSS-Feed-Reader/a383155194e14c2f97f79dec005697ae#a383155194e14c2f97f79dec005697ae</link>
		<pubDate>Thu, 08 Feb 2007 22:06:00 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/252164-Best-Free-RSS-Feed-Reader/a383155194e14c2f97f79dec005697ae#a383155194e14c2f97f79dec005697ae</guid>
		<dc:creator>atehrani</dc:creator>
		<slash:comments>13</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/atehrani/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Quick question :)</title>
		<description><![CDATA[<p>64-bit, provided you have mature driver support for your devices.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/251672-Quick-question-/bfc236372208496db2369dec004ec695#bfc236372208496db2369dec004ec695</link>
		<pubDate>Wed, 24 Jan 2007 19:37:58 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/251672-Quick-question-/bfc236372208496db2369dec004ec695#bfc236372208496db2369dec004ec695</guid>
		<dc:creator>atehrani</dc:creator>
		<slash:comments>27</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/atehrani/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Opinions on null return vs argumentexception</title>
		<description><![CDATA[<p>As the previous poster mentioned, exceptions should be used for exceptional conditions. Not finding an element is not exceptional IMO.<br>
<br>
Also the use of Structs vs. Classes depends on the situation and in this example, I would use a Class.<br>
<br>
<a href="http://www.jaggersoft.com/pubs/StructsVsClasses.htm">http://www.jaggersoft.com/pubs/StructsVsClasses.htm</a></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/251289-Opinions-on-null-return-vs-argumentexception/c8d4175dd4a54de194489dea014fef7b#c8d4175dd4a54de194489dea014fef7b</link>
		<pubDate>Mon, 08 Jan 2007 21:26:24 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/251289-Opinions-on-null-return-vs-argumentexception/c8d4175dd4a54de194489dea014fef7b#c8d4175dd4a54de194489dea014fef7b</guid>
		<dc:creator>atehrani</dc:creator>
		<slash:comments>31</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/atehrani/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Coffeehouse - Oh noes!  I found a bug in Windows Media Player 11!!!</title>
		<description><![CDATA[<p>One would think that their QA would have had test cases for these edge conditions.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/250379-Oh-noes-I-found-a-bug-in-Windows-Media-Player-11/d4de0e017a3e46eaba4f9dec003c88f2#d4de0e017a3e46eaba4f9dec003c88f2</link>
		<pubDate>Thu, 30 Nov 2006 06:54:27 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/250379-Oh-noes-I-found-a-bug-in-Windows-Media-Player-11/d4de0e017a3e46eaba4f9dec003c88f2#d4de0e017a3e46eaba4f9dec003c88f2</guid>
		<dc:creator>atehrani</dc:creator>
		<slash:comments>10</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/atehrani/Discussions/RSS</wfw:commentRss>
	</item>
</channel>
</rss>