November 2004 - Posts

Listing of Managed Processes
I just discovered a cool way of listing all processes that run managed code. using System.Diagnostics; using System; class Program { static void Test() { PerformanceCounterCategory clr = new PerformanceCounterCategory ( ".NET CLR Memory" ); foreach ( Read More...
Rationale for Generic Type Parameter Naming Guidelines
The recent type parameter naming guidelines update resulted in a very lively discussion. I thought I would provide some rational for the recent changes. But first, I would like to first thank all of you who got involved in the debate. We have had debates Read More...
Power Collections on GotDotNet Featured Sites
I just noticed that the Power Collections project made it to the “Featured Sites” on GotDotNet. See http://www.gotdotnet.com/content/featuredsite/powercollections/default.aspx For those who don’t know, Power Collections is a community open source library Read More...
Design Guidelines Update: Names of Generic Type Parameters
After receiving lots of feedback from internal and external community (see here for example), we decided to modify the generic type parameter naming guidelines. The previous guidelines allowed only single letter type parameter names. The new guidelines Read More...
Page view tracker