System.Globalization Namespace DateTimeFormatInfo Class
Sets or retrieves the format pattern for a long date and long time value, which is associated with the 'F' format character.
[ VB ]
public Property FullDateTimePattern As String
[ C# ]
public string FullDateTimePattern {get; set;}
[ C++ ]
public: __property String* get_FullDateTimePattern ( );
public: __property void set_FullDateTimePattern ( String* );
[ JScript ]
function get FullDateTimePattern ( ) : String;
public function set FullDateTimePattern ( String );
The format pattern for a long date and long time value, which is associated with the 'F' format character.
See DateTimeFormatInfo for patterns that can be combined to construct custom patterns; for example, "dddd, dd MMMM yyyy HH:mm:ss".
This property is affected if the value of the Calendar property changes.
The below shows the FullDateTimePattern used for each of the available cultures.
Show me
DateTimeFormatInfo Members