System.Globalization Namespace DateTimeFormatInfo Class
Sets or retrieves the format pattern for a year and month value, which is associated with the 'y' and 'Y' format characters.
[ VB ]
public Property YearMonthPattern As String
[ C# ]
public string YearMonthPattern {get; set;}
[ C++ ]
public: __property String* get_YearMonthPattern ( );
public: __property void set_YearMonthPattern ( String* );
[ JScript ]
function get YearMonthPattern ( ) : String;
public function set YearMonthPattern ( String );
The format pattern for a year and month value, which is associated with the 'y' and 'Y' format characters.
See DateTimeFormatInfo for patterns that can be combined to construct custom patterns; for example, "yyyy MMMM".
This property is affected if the value of the Calendar property changes.
The below shows the YearMonthPattern used for each of the available cultures.
Show me
DateTimeFormatInfo Members MonthDayPattern