up vote 13 down vote favorite
11
share [g+] share [fb]

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.

Thanks!

link|improve this question

feedback

5 Answers

up vote 11 down vote accepted

Check this articles:

link|improve this answer
feedback

It really depends on what you mean by "mixin" - everyone seems to have a slightly different idea. The kind of mixin I'd like to see (but which isn't available in C#) is making implementation-through-composition simple:

public class Mixin : ISomeInterface
{
    private SomeImplementation impl implements ISomeInterface;

    public void OneMethod()
    {
        // Specialise just this method
    }
}

The compiler would implement ISomeInterface just by proxying every member to "impl" unless there was another implementation in the class directly.

None of this is possible at the moment though :)

link|improve this answer
Cool technique ... I'd definitely vote for this technique. – Charles Prakash Dasari Feb 10 '10 at 8:46
Anders please add this to C# 5!! – Schneider Aug 26 '10 at 5:51
6  
I find it annoying that C++ experts make statements like "Prefer composition to inheritance" yet the language (C++ or C#) offers precious little help to do the "right thing". – Dan Sep 27 '10 at 14:10
1  
Just saw a connect open on this on the VS Feedback rss feed. Go and vote if you likes. – Will Dec 3 '10 at 18:15
1  
@Downvoter: Care to comment? – Jon Skeet Sep 29 '11 at 17:00
show 8 more comments
feedback

LinFu and Castle's DynamicProxy implement mixins. COP (Composite Oriented Programming) could be considered as making a whole paradigm out of mixins. This post from Anders Noras has useful informations and links.

EDIT: This is all possible with C# 2.0, without extension methods

link|improve this answer
feedback

There is an open source framework that enables you to implement mixins via C#. Have a look on https://www.re-motion.org/wiki/display/RM/re-motion+mixins.

It is very easy to implement mixins with this framework. Just have a look on the samples and the hands on labs presented on this page.

The mixins are part of a DDD framework. But it is planned to extract the mixin functionality from the framework within the next month.

link|improve this answer
remix.codeplex.com has just been published – Stefan Papp Mar 23 '11 at 10:17
feedback

I usually employ this pattern:

public interface IColor
{
    byte Red   {get;}
    byte Green {get;}
    byte Blue  {get;}
}

public static class ColorExtensions
{
    public static byte Luminance(this IColor c)
    {
        return (byte)(c.Red*0.3 + c.Green*0.59+ c.Blue*0.11);
    }
}

I have the two definitions in the same source file/namespace. That way the extensions are always available when the interface is used (with 'using').

This gives you a limited mixin as described in CMS' first link.

Limitations:

  • no data fields
  • no properties (you'll have to call myColor.Luminance() with parentheses, extension properties anyone?)
  • awkward / cumbersome
  • two definitions / one file

It's still sufficient for many situations.

It would be nice if they (MS) could add some compiler magic to auto-generate the extension class:

public interface IColor
{
    byte Red   {get;}
    byte Green {get;}
    byte Blue  {get;}

    // compiler generates anonymous extension class
    public static byte Luminance(this IColor c)     
    {
        return (byte)(c.Red*0.3 + c.Green*0.59+ c.Blue*0.11);
    }
}

Although Jon's proposed compiler trick would be even nicer.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.