DateTimeFormatInfo.LongTimePattern 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
긴 시간 값의 사용자 지정 형식 문자열을 가져오거나 설정합니다.
public:
property System::String ^ LongTimePattern { System::String ^ get(); void set(System::String ^ value); };
public string LongTimePattern { get; set; }
member this.LongTimePattern : string with get, set
Public Property LongTimePattern As String
속성 값
자세한 시간 값의 서식 패턴입니다.
예외
속성이 null
로 설정되어 있습니다.
속성이 설정되어 있으며 DateTimeFormatInfo 개체가 읽기 전용입니다.
예제
다음 예제에서는 몇 가지 문화권의 값을 LongTimePattern 표시합니다.
using namespace System;
using namespace System::Globalization;
void PrintPattern( String^ myCulture )
{
CultureInfo^ MyCI = gcnew CultureInfo( myCulture,false );
DateTimeFormatInfo^ myDTFI = MyCI->DateTimeFormat;
Console::WriteLine( " {0} {1}", myCulture, myDTFI->LongTimePattern );
}
int main()
{
// Displays the values of the pattern properties.
Console::WriteLine( " CULTURE PROPERTY VALUE" );
PrintPattern( "en-US" );
PrintPattern( "ja-JP" );
PrintPattern( "fr-FR" );
}
/*
This code produces the following output.
CULTURE PROPERTY VALUE
en-US h:mm:ss tt
ja-JP H:mm:ss
fr-FR HH:mm:ss
*/
using System;
using System.Globalization;
public class SamplesDTFI {
public static void Main() {
// Displays the values of the pattern properties.
Console.WriteLine( " CULTURE PROPERTY VALUE" );
PrintPattern( "en-US" );
PrintPattern( "ja-JP" );
PrintPattern( "fr-FR" );
}
public static void PrintPattern( String myCulture ) {
DateTimeFormatInfo myDTFI = new CultureInfo( myCulture, false ).DateTimeFormat;
Console.WriteLine( " {0} {1}", myCulture, myDTFI.LongTimePattern );
}
}
/*
This code produces the following output.
CULTURE PROPERTY VALUE
en-US h:mm:ss tt
ja-JP H:mm:ss
fr-FR HH:mm:ss
*/
Imports System.Globalization
Public Class SamplesDTFI
Public Shared Sub Main()
' Displays the values of the pattern properties.
Console.WriteLine(" CULTURE PROPERTY VALUE")
PrintPattern("en-US")
PrintPattern("ja-JP")
PrintPattern("fr-FR")
End Sub
Public Shared Sub PrintPattern(myCulture As [String])
Dim myDTFI As DateTimeFormatInfo = New CultureInfo(myCulture, False).DateTimeFormat
Console.WriteLine(" {0} {1}", myCulture, myDTFI.LongTimePattern)
End Sub
End Class
'This code produces the following output.
'
' CULTURE PROPERTY VALUE
' en-US h:mm:ss tt
' ja-JP H:mm:ss
' fr-FR HH:mm:ss
'
설명
속성은 LongTimePattern 및 메서드에 대한 호출 DateTime.ToString 및 DateTimeOffset.ToString "T" 표준 형식 문자열을 제공하는 복합 형식 문자열에 의해 반환되는 날짜 문자열의 문화권별 형식을 정의합니다.
시간 구분 기호 자리 표시자를 사용하는 대신 장시간 패턴의 시간 구분 기호를 정확한 문자열로 설정하는 것이 좋습니다. 예를 들어 h-mm-ss 패턴을 가져오려면 긴 날짜 패턴을 "h-mm-ss"로 설정합니다.
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET