views:

147

answers:

2

The MSDN "Writing Faster Managed Code: Know What Things Cost" is pretty nice, but it was written for CLR v1 in 2003. Is there an updated version of this somewhere?

+1  A: 

I don't know of one that replaces that but the book CLR via C# will provide you with a lot of deep and relevant knowledge for how the CLR works and where it consumes a lot of time and resources.

Harpreet
+1  A: 

I don't think so, and I don't think that an updated version would be that much different.

The timing figures would be different as the testing machine would probably be newer and faster, but the relation between the tests would be pretty much the same.

The article is about the low level effects of common operations in managed code, and that hasn't changed much since the artice was written. The new versions of the framework has added a lot of functionality, but it's all built on the primitives that has been available since C# 1.0.

Guffa