Operator Overloading with C# Extension Methods - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T22:05:13Zhttp://stackoverflow.com/feeds/question/172658http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/172658/operator-overloading-with-c-extension-methods12Operator Overloading with C# Extension MethodsBlinky2008-10-05T20:59:03Z2008-10-05T21:05:59Z
<p>I'm attempting to use extension methods to add an operater overload to the C# StringBuilder class. Specifically, given StringBuilder sb, I'd like sb += "text" to become equivalent to sb.Append("text");</p>
<p>Here's the syntax for creating an extension method for StringBuilder:</p>
<pre><code>public static class sbExtensions
{
public static StringBuilder blah(this StringBuilder sb)
{
return sb;
}
}
</code></pre>
<p>It successfully adds the "blah" extension method to the StringBuilder.</p>
<p>Unfortunately, operator overloading does not seem to work:</p>
<pre><code>public static class sbExtensions
{
public static StringBuilder operator +(this StringBuilder sb, string s)
{
return sb.Append(s);
}
}
</code></pre>
<p>Among other issues, the keyword 'this' is not allowed in this context.</p>
<p>Are adding operator overloads via extension methods possible? If so, what's the proper way to go about it?</p>
http://stackoverflow.com/questions/172658/operator-overloading-with-c-extension-methods/172666#17266617Answer by Jacob for Operator Overloading with C# Extension MethodsJacob2008-10-05T21:04:11Z2008-10-05T21:04:11Z<p>This is not currently possible, because extension methods must be in static classes, and static classes can't have operator overloads.</p>
<p>Mads Torgersen, C# Language PM says:</p>
<blockquote>
<p>...for the Orcas release we decided to
take the cautious approach and add
only regular extension methods, as
opposed to extention properties,
events, operators, static methods, etc
etc. Regular extension methods were
what we needed for LINQ, and they had
a syntactically minimal design that
could not be easily mimicked for some
of the other member kinds.</p>
<p>We are becoming increasingly aware
that other kinds of extension members
could be useful, and so we will return
to this issue after Orcas. No
guarantees, though!</p>
</blockquote>
<p>Edit:</p>
<p>I just noticed, Mads wrote more in the <a href="https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=168224" rel="nofollow">same article</a>:</p>
<blockquote>
<p>I am sorry to report that we will not
be doing this in the next release. We
did take extension members very
seriously in our plans, and spent a
lot of effort trying to get them
right, but in the end we couldn't get
it smooth enough, and decided to give
way to other interesting features.</p>
<p>This is still on our radar for future
releases. What will help is if we get
a good amount of compelling scenarios
that can help drive the right design.</p>
</blockquote>
http://stackoverflow.com/questions/172658/operator-overloading-with-c-extension-methods/172670#1726702Answer by Dylan Beattie for Operator Overloading with C# Extension MethodsDylan Beattie2008-10-05T21:05:59Z2008-10-05T21:05:59Z<p>It appears this isn't currently possible - there's an open feedback issue requesting this very feature on Microsoft Connect:</p>
<p>https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=168224</p>
<p>suggesting it might appear in a future release but isn't implemented for the current version.</p>