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/

반응형

+ Recent posts