Welcome to AspAdvice Sign in | Join | Help

Orcs Goblins and .NET

I enjoy reading and writing. I hope you enjoy at least the former.

August 2007 - Posts

The Joys of Windows Live Writer
I've just downloaded and started trying out windows live writer, and I think it is excellent. This has got to be just about the easiest and best program for blog writing I've ever seen. Features I love View Web Preview - This view actually shows me what Read More...

by Brendan | 2 Comments

Generic List AddRange, Remove, and Count Performance
The .NET System.Collections.Generic.List class is not a linked list as non-.NET users might expect. This list class is actually more like an array list than a linked list. Because of this it has some of the benefits of arrays. Simply because of the array Read More...

by Brendan | 0 Comments

C++ List Operation Performance
I am fairly certain that the C++ Standard Template Library's list object's size function is an O(n) operation. For those of you less algorithmically informed people I am saying that a linked list which uses pointers to the next object in the list Read More...

by Brendan | 0 Comments

Filed under: