Search Results

1
vote

OutOfMemoryException in Regex Matches when processing large files

Without seeing your Regex, I don't know for sure but sometimes you can get problems like this because your matches are Greedy instead of Lazy. The Regex engine has to store lots of informat …
1
vote

Priority Queue in .Net

You could just implement IComparable on your class and create the specific comparer inside your class, that way you can just use IList.Sort() ? …