Skip to content

Latest commit

 

History

History
43 lines (33 loc) · 723 Bytes

NamingConventions.md

File metadata and controls

43 lines (33 loc) · 723 Bytes

Namngivning - C#

Olika typer av namngivning

Camel Case : Liten första bokstav, stor bokstav i varje nytt ord.

isVerified
userAge
totalSum

Pascal Case : Stor bokstav i varje ord.

PrintInfo
StartCar
AddAllNumbers

Underscore : Används för privata fields, följt av Camel case.

_age
_carModel
_yearsLeft


Sammanfattning

Typ Case Underscore
Namespace PascalCase Nej
Klass PascalCase Nej
Property PascalCase Nej
Metod PascalCase Nej
Konstruktor PascalCase Nej
Enum PascalCase Nej
Constant PascalCase Nej
Lokal variabel camelCase Nej
Field camelCase Ja
Metod argument camelCase Nej