Browse by Tags

Correct Comparisons for files and paths in .NET
01 February 08 12:36 PM | john | 0 Comments   
So exactly how should you compare file and path names in .NET programs? Ordinal case insensitive comparisons are the correct approach according to this MSDN article . Read More...
Filed under: , , ,
Dynamic Code Generation in .NET
05 January 08 03:08 PM | john | 0 Comments   
I recently had the need/desire to dynamically generate some code in .NET. It's not something you tend to do a lot unless you are creating a compiler, so it was an interesting experience. In the end it didn't solve my problem, but it was educational none-the-less. Read More...
Reader Writer Lock in .NET 3.5
20 April 07 04:26 PM | john | 2 Comments   
I was directed to this really great blog by Joe Duffy on the new ReaderWriterLockSlim in .NET 3.5. Vance also has a good blog too. Read More...
Filed under: ,