Temps de lecture : 4 min.
Hybridizer supports generics and virtual functions. These concepts allow writing flexible code with type parameters, defering actual behavior resolution to type instanciation by client code. These are fondamental features of modern languages, easing encapsulation, code factorization and concepts expression. However in C#, type parameters are resolved at runtime, which comes with a significant performance penalty. Hybridizer maps them …