---
title: "Different Types of Naming Convention"  
description: "Different Types of Naming Convention"  
author: "Anonymous User"  
published: 2018-03-16  
updated: 2020-09-19  
canonical: https://www.mindstick.com/interview/23355/different-types-of-naming-convention  
category: "c#"  
tags: ["c#"]  
reading_time: 2 minutes  

---

# Different Types of Naming Convention

## Types of Naming Convention

There are different types of naming casing style. Different types of casing styles:

## Camel Case (camelCase)

First letter of the word is lower case and then each first letter of the part of the word is upper case.

**Example:** numberOfDays

## Pascal Case (PascalCase)

First letter of the word is upper case and then each first letter of the part of the word is upper case.

**Example:** DataTable

## Underscode Prefix (_underscore)

The word begins with underscore singe and for the rest of the word use camelCase rule.

**Example:** _strFirstName

## Hungarian Notation

First letter of the word is about its data type and rest of the word is camelCase. Example: iStudentNumber (i=integer)

**Uppercase:** All letters of the word are uppercase.

Example: ID, PI

## Answers

### Answer by Anonymous User

## Types of Naming Convention

There are different types of naming casing style. Different types of casing styles:

## Camel Case (camelCase)

First letter of the word is lower case and then each first letter of the part of the word is upper case.

**Example:** numberOfDays

## Pascal Case (PascalCase)

First letter of the word is upper case and then each first letter of the part of the word is upper case.

**Example:** DataTable

## Underscode Prefix (_underscore)

The word begins with underscore singe and for the rest of the word use camelCase rule.

**Example:** _strFirstName

## Hungarian Notation

First letter of the word is about its data type and rest of the word is camelCase. Example: iStudentNumber (i=integer)

**Uppercase:** All letters of the word are uppercase.

Example: ID, PI


---

Original Source: https://www.mindstick.com/interview/23355/different-types-of-naming-convention

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
