Browse by Tags

All Tags » Threading (RSS)

Making the Possible More Impossible

Jared Parsons thought it would be nice if we could have a ReadOnlyList object in our generic template instead of IEnumerable. I think that's an excellent idea, so a few minor modifications and we have an even better solution, not requiring the generic...

Making the Possible Impossible

Have you ever gone to a restraunt with a menu that was just too big? Every once and a while I wind up at a place with a huge menu and it takes forever to choose what kind of food I'm going to eat. That's not a problem when I go to a steak house. When...

Asynchronous "For" Loops

With processors set to scale at the CPU level instead of the Mhz level, wouldn't it be great if you could write some code like: StringBuilder output = new StringBuilder(); foreach (MyObj o in collection) { string val; async { val = doSomethingHard...
More Posts