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!
|
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!
| |||
|
feedback
|
|
Check this articles: | ||||
|
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:
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 :) | |||||||||||||||||
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 | ||||
|
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. | |||
|
feedback
|
|
I usually employ this pattern:
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:
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:
Although Jon's proposed compiler trick would be even nicer. | |||
|
feedback
|