Pages

Saturday, May 11, 2013

naming convention

Naming convention  is two type in c#
i.pascal casing
ii.camel casing

pascal casing:

pascal casing has following convention
1.EnumNames
2.class name
3.project name
4.interface name
5.global variable
6.deligate
7.struct name
8.file name

example:

 PalleInfoDetails

here every first letter will be capital letter for every word and other letter are small

ii.camel casing:

example:
doctorInfoDedtails
her first word of first letter will be small and other word first letter capital ans other letter are small

No comments:

Post a Comment