DateTimeFormatter.Format 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
Format(DateTime) |
제공된 날짜 및 시간의 문자열 표현을 반환합니다. |
Format(DateTime, String) |
지정된 표준 시간대의 지정된 날짜 및 시간을 나타내는 문자열을 반환하며 포맷터가 현재 사용하고 있는 템플릿을 준수합니다. |
Format(DateTime)
제공된 날짜 및 시간의 문자열 표현을 반환합니다.
public:
virtual Platform::String ^ Format(DateTime value) = Format;
winrt::hstring Format(DateTime const& value);
public string Format(System.DateTimeOffset value);
function format(value)
Public Function Format (value As DateTimeOffset) As String
매개 변수
- value
- DateTime DateTimeOffset
서식을 지정할 날짜 및 시간입니다.
반환
날짜 및 시간을 나타내는 문자열입니다.
설명
참고
애플리케이션에서 일본 달력을 지원하는 경우 2019년 5월 일본어 시대 변경을 제대로 처리하고 있는지 확인해야 합니다. 자세한 내용은 일본 시대 변경을 위한 애플리케이션 준비를 참조하세요 .
추가 정보
적용 대상
Format(DateTime, String)
지정된 표준 시간대의 지정된 날짜 및 시간을 나타내는 문자열을 반환하며 포맷터가 현재 사용하고 있는 템플릿을 준수합니다.
public:
virtual Platform::String ^ Format(DateTime datetime, Platform::String ^ timeZoneId) = Format;
/// [Windows.Foundation.Metadata.Overload("FormatUsingTimeZone")]
winrt::hstring Format(DateTime const& datetime, winrt::hstring const& timeZoneId);
[Windows.Foundation.Metadata.Overload("FormatUsingTimeZone")]
public string Format(System.DateTimeOffset datetime, string timeZoneId);
function format(datetime, timeZoneId)
Public Function Format (datetime As DateTimeOffset, timeZoneId As String) As String
매개 변수
- datetime
- DateTime DateTimeOffset
서식을 지정할 날짜, 시간 및 표준 시간대입니다.
- timeZoneId
-
String
Platform::String
winrt::hstring
사용할 표준 시간대를 식별하는 IANA 표준 시간대 데이터베이스 의 식별자입니다(예: 태평양 표준시의 경우 "Americas/Los_Angeles").
반환
날짜, 시간 및 표준 시간대를 나타내는 문자열입니다.
- 특성
설명
참고
애플리케이션에서 일본 달력을 지원하는 경우 2019년 5월 일본어 시대 변경을 제대로 처리하고 있는지 확인해야 합니다. 자세한 내용은 일본 시대 변경을 위한 애플리케이션 준비를 참조하세요 .