21 Mar
2009

One Scenario Where the System.DirectoryServices. AccountManagement API Falls Down

About a year ago, I wrote a post about Directory Programming with System.DirectoryServices. AccountManagement. I’ve been using the AccountManagement API of the .NET 3.5 framework since then and I still like its simplicity over the raw API of the System.DirectoryServices namespace. Over the past year, however, I’ve encountered one scenario where I was forced to […]

Read More
21 Mar
2009

Be Careful With the var Keyword and Expression Builders

I just want to point out a small tidbit I ran into earlier this week. I was using the following simplified expression builder that provides a fluent interface for creating an instance of a Product. public class Product { public Double Price { get; private set; } public String Name { get; private set; } […]

Read More