Archive for December, 2011

Fastest way to remove items from a List with thousands of items

Let’s say you have a list of 200,000 strings, and you need to remove 20,000 strings in a non-sequential order. You would probably loop through the list of items to remove each item from the original list: // Create a list with thousands of items List<string> originalList = new List<string>(); for (int a = 0; [...]


Read more →

SVN and Mantis Bug Tracker integration

Hello everyone! This is my first post on my blog! As a first post, I thought I’d share how I have integrated my private SVN (Subversion) repository and my public Mantis bug tracker. You can automatically add comments to Mantis after you check-in files in your SVN repository, using a post-commit event. For more information, click [...]


Read more →