Pascal casing or Camel Casing for C# code?

A link to the official design guidelines might help. Specifically, read the section on Capitalization styles.

In the grand scheme of things, Pascal vs Camel doesn’t matter that much and you’re not likely to convince anyone to go back over an existing code base just to change the case of names. What’s really important is that you want to be consistent within a given code base.

I’m just happy as long as you’re not using Hungarian.

Leave a Comment