DateTimeFormatInfo.LongTimePattern Właściwość

Definicja

Pobiera lub ustawia niestandardowy ciąg formatu dla długiej wartości czasu.

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

Wartość właściwości

Wzorzec formatu dla długiej wartości czasu.

Wyjątki

Właściwość jest ustawiana na null.

Właściwość jest ustawiana, a DateTimeFormatInfo obiekt jest tylko do odczytu.

Przykłady

Poniższy przykład przedstawia wartość LongTimePattern dla kilku kultur.

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
'

Uwagi

Właściwość LongTimePattern definiuje format specyficzny dla kultury ciągów daty, które są zwracane przez wywołania metod DateTime.ToString i DateTimeOffset.ToString i oraz ciągi formatu złożonego, które są dostarczane ciąg formatu standardowego "T".

Zalecamy ustawienie separatora czasu we wzorcu długiego czasu na dokładny ciąg zamiast używać symbolu zastępczego separatora czasu. Aby na przykład uzyskać wzorzec h-mm-ss, ustaw wzorzec daty długiej na "h-mm-ss".

Dotyczy

Zobacz też