News

Even though I have Team Suite MSDN subscription, since we run VS2008 apparently we can't use the "reverse engineer solution to Visio UML class diagrams" functionality that VS2005 had. Thanks ...
The FrozenSet and FrozenDictionary classes introduced in .NET 8 are immutable collections optimized for fast look-ups. Here’s how to take advantage of them.
And that's all you need to write. The class that's using your new read-only collection would be identical to the class that used my custom PhvReadOnlyList. In fact, if that's all you want, then you ...
So I'm trying to generate a UML diagram with ArgoUML from a C# API, and realized that I actually want to generate the diagram from the already compiled and linked .NET API assemblies (.dll).Is ...
Prior to .NET 4.5, the primary covariant collection interface was IEnumerable<out T>. If you wanted to have a read-only view of a List or a Dictionary class, you had to roll your own custom interface, ...
Take advantage of read-only generic interfaces such as IReadOnlyList, IReadOnlyDictionary, and IReadOnlyCollection to prevent modifications to collections in your .NET Core applications.