DateTimeFormatInfo.FullDateTimePattern Proprietà

Definizione

Ottiene o imposta la stringa di formato personalizzata per un valore di data e ora estese.

public:
 property System::String ^ FullDateTimePattern { System::String ^ get(); void set(System::String ^ value); };
public string FullDateTimePattern { get; set; }
member this.FullDateTimePattern : string with get, set
Public Property FullDateTimePattern As String

Valore della proprietà

Stringa di formato personalizzata per un valore di data e ora estese.

Eccezioni

La proprietà viene impostata su null.

La proprietà viene impostata e l'oggetto DateTimeFormatInfo è di sola lettura.

Esempio

Nell'esempio seguente viene visualizzato il valore di FullDateTimePattern per alcune impostazioni cultura.

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->FullDateTimePattern );
}

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.  The question marks take the place of native script characters.

CULTURE    PROPERTY VALUE
en-US     dddd, MMMM dd, yyyy h:mm:ss tt
ja-JP     yyyy'年'M'月'd'日' H:mm:ss
fr-FR     dddd d MMMM yyyy 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.FullDateTimePattern );
   }
}

/*
This code produces the following output.  The question marks take the place of native script characters.

 CULTURE    PROPERTY VALUE
  en-US     dddd, MMMM dd, yyyy h:mm:ss tt
  ja-JP     yyyy'年'M'月'd'日' H:mm:ss
  fr-FR     dddd d MMMM yyyy 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.FullDateTimePattern)

   End Sub

End Class

'This code produces the following output.  The question marks take the place of native script characters.
'
' CULTURE    PROPERTY VALUE
'  en-US     dddd, MMMM dd, yyyy h:mm:ss tt
'  ja-JP     yyyy'年'M'月'd'日' H:mm:ss
'  fr-FR     dddd d MMMM yyyy HH:mm:ss
'

Commenti

La stringa di formato standard "F" è un alias per la FullDateTimePattern proprietà . In altre parole, la stringa di formato personalizzata assegnata a questa proprietà definisce il formato della stringa di risultato per la stringa di formato standard "F". Per altre informazioni, vedere Stringhe di formato data e ora standard.

Il valore della FullDateTimePattern proprietà viene generato in modo dinamico concatenando le LongDatePattern proprietà e LongTimePattern separate da uno spazio. Questa assegnazione dinamica si verifica nelle condizioni seguenti:

  • Se il valore della proprietà viene recuperato prima che sia stato impostato in modo esplicito.

  • Quando il valore della LongDatePattern proprietà viene modificato.

  • Quando il valore della LongTimePattern proprietà viene modificato.

Questa proprietà è interessata se il valore della Calendar proprietà viene modificato.

Si applica a

Vedi anche