<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Comparing Reference Types in Unit Tests.</title>
	<atom:link href="http://vkreynin.wordpress.com/2008/07/03/comparing-reference-types-in-unit-tests/feed/" rel="self" type="application/rss+xml" />
	<link>http://vkreynin.wordpress.com/2008/07/03/comparing-reference-types-in-unit-tests/</link>
	<description>Never stop learning.</description>
	<lastBuildDate>Fri, 18 Dec 2009 16:34:47 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Explaining GetHashCode method. &#171; Vadim&#8217;s Weblog</title>
		<link>http://vkreynin.wordpress.com/2008/07/03/comparing-reference-types-in-unit-tests/#comment-477</link>
		<dc:creator>Explaining GetHashCode method. &#171; Vadim&#8217;s Weblog</dc:creator>
		<pubDate>Sun, 06 Jul 2008 02:44:53 +0000</pubDate>
		<guid isPermaLink="false">http://vkreynin.wordpress.com/2008/07/03/comparing-reference-types-in-unit-tests/#comment-477</guid>
		<description>[...] best way to explain it is to show an example. In my previous post I was using class Point as an example.&#160; I&#8217;m going to continue with this class.&#160; So [...]</description>
		<content:encoded><![CDATA[<p>[...] best way to explain it is to show an example. In my previous post I was using class Point as an example.&nbsp; I&#8217;m going to continue with this class.&nbsp; So [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vadim</title>
		<link>http://vkreynin.wordpress.com/2008/07/03/comparing-reference-types-in-unit-tests/#comment-476</link>
		<dc:creator>Vadim</dc:creator>
		<pubDate>Fri, 04 Jul 2008 12:05:37 +0000</pubDate>
		<guid isPermaLink="false">http://vkreynin.wordpress.com/2008/07/03/comparing-reference-types-in-unit-tests/#comment-476</guid>
		<description>Jeff,
You are absolutely right.  I actually reflect on object.Equals(object, object) myself.  But I forgot about it very fast.  Thanks for keeping me honest. I&#039;ll update this post.</description>
		<content:encoded><![CDATA[<p>Jeff,<br />
You are absolutely right.  I actually reflect on object.Equals(object, object) myself.  But I forgot about it very fast.  Thanks for keeping me honest. I&#8217;ll update this post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff Brown</title>
		<link>http://vkreynin.wordpress.com/2008/07/03/comparing-reference-types-in-unit-tests/#comment-475</link>
		<dc:creator>Jeff Brown</dc:creator>
		<pubDate>Fri, 04 Jul 2008 05:03:03 +0000</pubDate>
		<guid isPermaLink="false">http://vkreynin.wordpress.com/2008/07/03/comparing-reference-types-in-unit-tests/#comment-475</guid>
		<description>Well, actually object.Equals(object, object) calls object.Equals(object) if both values are non-null and are not referentially identical.

Courtesy of Reflector:
public static bool Equals(object objA, object objB)
{
    return ((objA == objB) &#124;&#124; (((objA != null) &amp;&amp; (objB != null)) &amp;&amp; objA.Equals(objB)));
}

So I&#039;m not sure if your post is completely correct here...</description>
		<content:encoded><![CDATA[<p>Well, actually object.Equals(object, object) calls object.Equals(object) if both values are non-null and are not referentially identical.</p>
<p>Courtesy of Reflector:<br />
public static bool Equals(object objA, object objB)<br />
{<br />
    return ((objA == objB) || (((objA != null) &amp;&amp; (objB != null)) &amp;&amp; objA.Equals(objB)));<br />
}</p>
<p>So I&#8217;m not sure if your post is completely correct here&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
