Section 12.8: 숫자 관련 서식
// 정수 타입을 16 진수로 표현하기
string.Format("Hexadecimal: byte2: {0:x2}; byte4: {0:X4}; char: {1:x2}", 123, (int)'A');
// 천 단위 구분자가 추가된 정수
string.Format("Integer, thousand sep.: {0:#,#}; fixed length: >{0,10:#,#}<", 1234567);
// 앞이 0으로 채워진 정수 타입
string.Format("Integer, leading zeroes: {0:00}; ", 1);
// 소수
string.Format("Decimal, fixed precision: {0:0.000}; as percents: {0:0.00%}", 0.12);
출력 결과:
Hexadecimal: byte2: 7b; byte4: 007B; char: 41
Integer, thousand sep.: 1,234,567; fixed length: > 1,234,567<
Integer, leading zeroes: 01;
Decimal, fixed precision: 0.120; as percents: 12.00%
본 문서는 C# Notes for Professionals (라이센스:CC-BY-SA) 를 한글로 번역한 문서입니다. 번역상 오류가 있을 수 있으므로 정확한 내용은 원본 문서를 참고하세요.
[출처] https://books.goalkicker.com/CSharpBook/
반응형
'번역 > C# Notes for Professionals' 카테고리의 다른 글
12.10: String.Format() 표현식 내에서 중괄호 escape 처리하기 (0) | 2021.02.22 |
---|---|
12.9: ToString() (0) | 2021.02.19 |
12.7: 여백 문자를 채워넣어 좌/우 정렬시키기 (0) | 2021.02.19 |
12.6: 사용자 지정 숫자 서식 사용하기 (0) | 2021.02.18 |
12.5: 통화 (currency) 서식 지정하기 (0) | 2021.02.18 |