PreviousNext

Fluent Generics in C#

by bill-s, 2020-11-30T02:20:19.032Z

Generics is a powerful feature available in many statically typed languages. It offers a way to write code that seamlessly operates against many different types, by targeting the features they share rather than the types themselves. This provides the means for building flexible and reusable components without having to sacrifice type safety or introduce unnecessary duplication.

Read More