Section 19.13: 문화권 정보를 이용하여 Parse 및 TryParse 메소드 사용하기

다른 문화권 (언어) 정보를 이용하여 날짜와 시간 정보를 파싱하려고 하는 경우, 아래와 같은 예제를 참고하여 사용할 수 있다.

예제: 네덜란드에서 사용하는 날짜/시간 정보를 파싱하는 예

DateTime dateResult; var dutchDateString = "31 oktober 1999 04:20"; var dutchCulture = CultureInfo.CreateSpecificCulture("nl-NL"); DateTime.TryParse(dutchDateString, dutchCulture, styles, out dateResult); // 결과 {31/10/1999 04:20:00}

Parse 메소드를 사용하는 예제:

DateTime.Parse(dutchDateString, dutchCulture) // 결과 {31/10/1999 04:20:00}
본 문서는 C# Notes for Professionals (라이센스:CC-BY-SA) 를 한글로 번역한 문서입니다. 번역상 오류가 있을 수 있으므로 정확한 내용은 원본 문서를 참고하세요.

[출처] https://books.goalkicker.com/CSharpBook/

반응형

+ Recent posts