What is Pascal Case and Camel Case ?
There are two types of coding writing pattern.
1. Pascal Case
2. Camel Case
Pascal Case: The first letter of every word in the identifier is upper case.
Example:
GetSchoolName
GetTotalFeesByStudentRollNo
Camel Case: The first letter of the first word will be small in the identifier and next all word(s) first letter will be upper case.
Example:
getSchoolName
getTotalFeesByStudentRollNo
No comments:
Post a Comment