DateTimeFormatInfo.MonthDayPattern Property
Assembly: mscorlib (in mscorlib.dll)
/** @property */ public String get_MonthDayPattern () /** @property */ public void set_MonthDayPattern (String value)
public function get MonthDayPattern () : String public function set MonthDayPattern (value : String)
Property Value
The format pattern for a month and day value, which is associated with the 'm' and 'M' format characters.| Exception type | Condition |
|---|---|
| The property is being set to a null reference (Nothing in Visual Basic). |
|
| The property is being set and the DateTimeFormatInfo is read-only. |
See DateTimeFormatInfo for patterns that can be combined to construct custom patterns; for example, "MMMM dd".
This property is affected if the value of the Calendar property changes.
The following code example displays the value of MonthDayPattern for a few cultures.
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.MonthDayPattern ); } } /* This code produces the following output. The question marks take the place of native script characters. CULTURE PROPERTY VALUE en-US MMMM dd ja-JP M'?'d'?' fr-FR d MMMM */
import System.* ;
import System.Globalization.* ;
public class SamplesDTFI
{
public static void main(String[] args)
{
// Displays the values of the pattern properties.
Console.WriteLine(" CULTURE PROPERTY VALUE");
PrintPattern("en-US");
PrintPattern("ja-JP");
PrintPattern("fr-FR");
} //main
public static void PrintPattern(String myCulture)
{
DateTimeFormatInfo myDTFI =
(new CultureInfo(myCulture, false)).get_DateTimeFormat();
Console.WriteLine(" {0} {1}",
myCulture, myDTFI.get_MonthDayPattern());
} //PrintPattern
} //SamplesDTFI
/*
This code produces the following output.
The question marks take the place of native script characters.
CULTURE PROPERTY VALUE
en-US MMMM dd
ja-JP M'?'d'?'
fr-FR d MMMM
*/
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.