Take advantage of read-only generic interfaces such as IReadOnlyList, IReadOnlyDictionary, and IReadOnlyCollection to prevent modifications to collections in your .NET Core applications. A collection ...
Generics allow you to write more-robust code with a greater degree of flexibility. They also offer improved performance in many situations and make it possible to simplify common code constructs. The ...
After anxiously awaiting the release of .NET 2.0, I finally get to use it here at work. My first task is updating some of the old code to use generics instead of the old tricks I used to have ...