Changing the diff/merge tool in Visual Studio

31. July 2009
change visual studio diff/merge tool [More]

C# Development

C# Development Best Practice

16. July 2009
C# Development Standards Purpose The purpose of this document is to describe the C# coding standards used in the industry and my personal recommendations.   Microsoft Standards I primarily follow the Microsoft standards and best practices for C# development. The following information should b... [More]

C# Development

Casing/Notation

16. July 2009
Camel Case The capitalization of a word is such that the first letter is lowercase and the first letter of each successive word is uppercase, e.g. "propertiesFilename". Pascal Case The capitalization of a word, similar to Camel Case except that even the first word is capitalized, e.g. "PropertiesFil... [More]

C# Development