-
Notifications
You must be signed in to change notification settings - Fork 0
코딩 스타일
Seungho Han edited this page Dec 4, 2018
·
5 revisions
- 항상 tab을 사용합니다.
- LF 개행 문자를 사용합니다.
- 중괄호는 항상 새 줄에 작성합니다.
- C# 6/C# 7 문법을 가능할 때마다 사용합니다.
- MS C# 표준 naming conventions을 지킵니다.
- 예외 처리를 정확한 때에 사용합니다.
Naming Conventions
//non-private variable
variableName
//private variable
_variableName
//methods
MethodName
//parameters
parameterName
//Properties
PropertyName