Showing posts with label What are the different coding standards used in c# projects. Show all posts
Showing posts with label What are the different coding standards used in c# projects. Show all posts

Friday, 11 July 2014

What are the different coding standards used in c# projects

There are 3 types of naming convention pascal,hungarian and Camel.



Pascal notation starts with all first letter of the word capital. For example

"Customercode" where you can see "C" letter capital in both the words.



Camel notation starts with all first letter capital except the first letter of 
the first word. For example "customerCode", you can see the first letter "c" 
small and the other "C" of the letter code capital.



Hungarian notation starts with first word as the datatype prefix. For instance "intCount","boolIsValie" 
etc. The first word describes the datatype lik int, bool etc.