C# really needs something similar to this. How many times have I implemented INotifyProgertyChanged and INotifyPropertyChanging. They're the exact same implementation every time. Now I've gone on to a base notify propery changed class that I can inherit from, but the mix-in approach, or the default implementation could be perfect.
That's a good thing, but it doesn't let me add my own methods to existing classes - I can subclass and mixin an interface, but instances I get back from library methods won't have that extra interface.