Extension methods with C# 2
I recently had the need of a method that could take the first letter of a word and change it to uppercase. While creating a method to do this wasn’t hard, I began to think that creating an extension method for string might be a better way to go. So […]