template-mixins

How do people get mixin-style re-use in C#?

I come from a C++ background where I can use template mixins to write code that refers to FinalClass which is a template parameter that is passed in. This allows reusable functions to be "mixed-in" to any derived class, by simply inheriting from ReusableMixin with a template paramter of MyFinalClass. This all gets inlined into the clas...

Are there scala-like mixins for C++?

Scala Mixins ...