Section 12.3: 사용자 정의 형식 공급자 (custom format provider) 생성하기
public class CustomFormat: IFormatProvider, ICustomFormatter {
public string Format(string format, object arg, IFormatProvider formatProvider) {
if (!this.Equals(formatProvider)) {
return null;
}
if (format == "Reverse") {
return String.Join("", arg.ToString().Reverse());
}
return arg.ToString();
}
public object GetFormat(Type formatType) {
return formatType == typeof (ICustomFormatter) ? this : null;
}
}
사용법:
String.Format(new CustomFormat(), "-> {0:Reverse} <-", "Hello World");
출력 결과:
-> dlroW olleH <-
본 문서는 C# Notes for Professionals (라이센스:CC-BY-SA) 를 한글로 번역한 문서입니다. 번역상 오류가 있을 수 있으므로 정확한 내용은 원본 문서를 참고하세요.
[출처] https://books.goalkicker.com/CSharpBook/
반응형
'번역 > C# Notes for Professionals' 카테고리의 다른 글
12.5: 통화 (currency) 서식 지정하기 (0) | 2021.02.18 |
---|---|
12.4: 날짜 서식 지정하기 (0) | 2021.02.17 |
12.2: String.Format 이 프레임웍 내에 '내장된 (embedded)' 경우들 (0) | 2021.02.10 |
12.1: C# 6.0 부터 추가된 기능 (String Interpolation) (0) | 2021.02.09 |
12: String.Format (0) | 2021.02.09 |