<?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# Operator Overloading</title>
	<atom:link href="http://www.csharphelp.com/2006/03/c-operator-overloading/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.csharphelp.com/2006/03/c-operator-overloading/</link>
	<description>C# Tutorials and Resources</description>
	<lastBuildDate>Fri, 23 Jul 2010 13:20:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Martin</title>
		<link>http://www.csharphelp.com/2006/03/c-operator-overloading/comment-page-1/#comment-670</link>
		<dc:creator>Martin</dc:creator>
		<pubDate>Fri, 23 Jul 2010 13:20:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.csharphelp.com.php5-3.dfw1-2.websitetestlink.com/?p=135#comment-670</guid>
		<description>It might be helpful to mention that you can also overwrite cast-operators:

// returns value for &quot;(int)MyClassInstance&quot;
public static explicit operator int(MyClass instance)
{ return ... }

// for implicit casting do the following.
// notice that this method will make &quot;MyClass is int&quot; true and &quot;MyClassInstance as int&quot; possible
public static implicit operator int(MyClass instance)
{ return ... }</description>
		<content:encoded><![CDATA[<p>It might be helpful to mention that you can also overwrite cast-operators:</p>
<p>// returns value for &#8220;(int)MyClassInstance&#8221;<br />
public static explicit operator int(MyClass instance)<br />
{ return &#8230; }</p>
<p>// for implicit casting do the following.<br />
// notice that this method will make &#8220;MyClass is int&#8221; true and &#8220;MyClassInstance as int&#8221; possible<br />
public static implicit operator int(MyClass instance)<br />
{ return &#8230; }</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Samer Abu Rabie</title>
		<link>http://www.csharphelp.com/2006/03/c-operator-overloading/comment-page-1/#comment-624</link>
		<dc:creator>Samer Abu Rabie</dc:creator>
		<pubDate>Tue, 13 Jul 2010 07:54:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.csharphelp.com.php5-3.dfw1-2.websitetestlink.com/?p=135#comment-624</guid>
		<description>I just to add  that the true operator or the false operator can&#039;t be overloaded alone, you must overload both of them, therefore they can only be overloaded as pairs.

Nice article...</description>
		<content:encoded><![CDATA[<p>I just to add  that the true operator or the false operator can&#8217;t be overloaded alone, you must overload both of them, therefore they can only be overloaded as pairs.</p>
<p>Nice article&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jules</title>
		<link>http://www.csharphelp.com/2006/03/c-operator-overloading/comment-page-1/#comment-230</link>
		<dc:creator>Jules</dc:creator>
		<pubDate>Sat, 03 Apr 2010 17:02:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.csharphelp.com.php5-3.dfw1-2.websitetestlink.com/?p=135#comment-230</guid>
		<description>Article should also mention how to override the behaviour of the indexing operator, i.e. [], which uses a different syntax based on property declarations:

    public int this [int index]
    {
      set { /* do something with &#039;value&#039; */ }
      get { /* return something */ }
    }</description>
		<content:encoded><![CDATA[<p>Article should also mention how to override the behaviour of the indexing operator, i.e. [], which uses a different syntax based on property declarations:</p>
<p>    public int this [int index]<br />
    {<br />
      set { /* do something with &#8216;value&#8217; */ }<br />
      get { /* return something */ }<br />
    }</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vikram Kumar Jha</title>
		<link>http://www.csharphelp.com/2006/03/c-operator-overloading/comment-page-1/#comment-128</link>
		<dc:creator>Vikram Kumar Jha</dc:creator>
		<pubDate>Wed, 10 Feb 2010 04:08:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.csharphelp.com.php5-3.dfw1-2.websitetestlink.com/?p=135#comment-128</guid>
		<description>It is very useful that person who wants to know more about any topic.

Thanks a lot.................</description>
		<content:encoded><![CDATA[<p>It is very useful that person who wants to know more about any topic.</p>
<p>Thanks a lot&#8230;&#8230;&#8230;&#8230;&#8230;..</p>
]]></content:encoded>
	</item>
</channel>
</rss>
