Is it possible to implement mixins in C#? - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T04:58:54Zhttp://stackoverflow.com/feeds/question/255553http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/255553/is-it-possible-to-implement-mixins-in-c2Is it possible to implement mixins in C#?Stewart Johnson2008-11-01T05:14:33Z2008-11-01T15:44:32Z
<p>I've heard that it's possible with extension methods, but I can't quite figure it out myself. I'd like to see a specific example if possible.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/255553/is-it-possible-to-implement-mixins-in-c/255556#2555565Answer by CMS for Is it possible to implement mixins in C#?CMS2008-11-01T05:19:40Z2008-11-01T05:19:40Z<p>Check this articles:</p>
<ul>
<li><a href="http://www.zorched.net/2008/01/03/implementing-mixins-with-c-extension-methods/" rel="nofollow">Implementing Mixins with C# Extension Methods</a></li>
<li><a href="http://blog.colinmackay.net/archive/2008/02/24/1895.aspx" rel="nofollow">Mixins in C# 3.0</a></li>
</ul>
http://stackoverflow.com/questions/255553/is-it-possible-to-implement-mixins-in-c/255621#2556215Answer by Jon Skeet for Is it possible to implement mixins in C#?Jon Skeet2008-11-01T07:30:56Z2008-11-01T07:30:56Z<p>It really depends on what you mean by "mixin" - everyone seems to have a slightly different idea. The kind of mixin I'd <em>like</em> to see (but which isn't available in C#) is making implementation-through-composition simple:</p>
<pre><code>public class Mixin : ISomeInterface
{
private SomeImplementation impl implements ISomeInterface;
public void OneMethod()
{
// Specialise just this method
}
}
</code></pre>
<p>The compiler would implement ISomeInterface just by proxying every member to "impl" unless there was another implementation in the class directly.</p>
<p>None of this is possible at the moment though :)</p>
http://stackoverflow.com/questions/255553/is-it-possible-to-implement-mixins-in-c/255690#2556901Answer by Mauricio Scheffer for Is it possible to implement mixins in C#?Mauricio Scheffer2008-11-01T15:44:32Z2008-11-01T15:44:32Z<p><a href="http://code.google.com/p/linfu/" rel="nofollow">LinFu</a> and <a href="http://svn.castleproject.org:8080/svn/castle/trunk/Tools/Castle.DynamicProxy2/Castle.DynamicProxy.Tests/MixinTestCase.cs" rel="nofollow">Castle's DynamicProxy</a> implement mixins. COP (Composite Oriented Programming) could be considered as making a whole paradigm out of mixins. <a href="http://andersnoras.com/blogs/anoras/archive/2008/08/27/cop-c-4-0-and-doing-open-source-stuff.aspx" rel="nofollow">This post from Anders Noras</a> has useful informations and links.</p>
<p>EDIT: This is all possible with C# 2.0, without extension methods</p>