DateTimeFormatInfo.AbbreviatedMonthGenitiveNames 屬性

定義

取得或設定字串陣列,這個陣列包含與目前 DateTimeFormatInfo 物件關聯的縮寫月份名稱。

public:
 property cli::array <System::String ^> ^ AbbreviatedMonthGenitiveNames { cli::array <System::String ^> ^ get(); void set(cli::array <System::String ^> ^ value); };
public string[] AbbreviatedMonthGenitiveNames { get; set; }
[System.Runtime.InteropServices.ComVisible(false)]
public string[] AbbreviatedMonthGenitiveNames { get; set; }
member this.AbbreviatedMonthGenitiveNames : string[] with get, set
[<System.Runtime.InteropServices.ComVisible(false)>]
member this.AbbreviatedMonthGenitiveNames : string[] with get, set
Public Property AbbreviatedMonthGenitiveNames As String()

屬性值

String[]

縮寫月份名稱的陣列。

屬性

例外狀況

在 set 作業中,陣列式多維的,或者長度不是剛好為 13。

在 set 作業中,陣列或陣列的其中一個元素為 null

在設定作業中,目前 DateTimeFormatInfo 物件是唯讀的。

範例

下列範例會建立代表英文 (美國) 文化特性的讀取/寫入 CultureInfo 物件,並將縮寫的 genitive 月份名稱指派給其 AbbreviatedMonthNamesAbbreviatedMonthGenitiveNames 屬性。 然後,它會顯示日期的字串表示,其中包含文化特性支援行事曆中每個月的縮寫月份名稱。

using System;
using System.Globalization;

public class Example
{
   public static void Main()
   {
      CultureInfo ci = CultureInfo.CreateSpecificCulture("en-US");
      DateTimeFormatInfo dtfi = ci.DateTimeFormat;
      dtfi.AbbreviatedMonthNames = new string[] { "of Jan", "of Feb", "of Mar",
                                                  "of Apr", "of May", "of Jun",
                                                  "of Jul", "of Aug", "of Sep",
                                                  "of Oct", "of Nov", "of Dec", "" };
      dtfi.AbbreviatedMonthGenitiveNames = dtfi.AbbreviatedMonthNames;
      DateTime dat = new DateTime(2012, 5, 28);

      for (int ctr = 0; ctr < dtfi.Calendar.GetMonthsInYear(dat.Year); ctr++)
         Console.WriteLine(dat.AddMonths(ctr).ToString("dd MMM yyyy", dtfi));
   }
}
// The example displays the following output:
//       28 of May 2012
//       28 of Jun 2012
//       28 of Jul 2012
//       28 of Aug 2012
//       28 of Sep 2012
//       28 of Oct 2012
//       28 of Nov 2012
//       28 of Dec 2012
//       28 of Jan 2013
//       28 of Feb 2013
//       28 of Mar 2013
//       28 of Apr 2013
Imports System.Globalization

Module Example
   Public Sub Main()
      Dim ci As CultureInfo = CultureInfo.CreateSpecificCulture("en-US")
      Dim dtfi As DateTimeFormatInfo = ci.DateTimeFormat
      dtfi.AbbreviatedMonthNames = { "of Jan", "of Feb", "of Mar", 
                                     "of Apr", "of May", "of Jun", 
                                     "of Jul", "of Aug", "of Sep", 
                                     "of Oct", "of Nov", "of Dec", "" }  
      dtfi.AbbreviatedMonthGenitiveNames = dtfi.AbbreviatedMonthNames
      Dim dat As Date = #05/28/2012#
      
      For ctr As Integer = 0 To dtfi.Calendar.GetMonthsInYear(dat.Year) - 1
         Console.WriteLine(dat.AddMonths(ctr).ToString("dd MMM yyyy", dtfi))
      Next
   End Sub
End Module
' The example displays the following output:
'       28 of May 2012
'       28 of Jun 2012
'       28 of Jul 2012
'       28 of Aug 2012
'       28 of Sep 2012
'       28 of Oct 2012
'       28 of Nov 2012
'       28 of Dec 2012
'       28 of Jan 2013
'       28 of Feb 2013
'       28 of Mar 2013
'       28 of Apr 2013

備註

在某些語言中,屬於日期一部分的月份名稱會出現在 Genitive 案例中。 例如,ru-RU 或俄文 (俄羅斯) 文化特性中的日期包含日期號碼和代號月份名稱,例如 1 Января (1 1 月) 。 針對這些文化特性,如果自訂格式字串包含 「MMM」 格式規範, DateTime.ToStringToString 方法會包含陣列的適當成員 AbbreviatedMonthGenitiveNames ,以取代結果字串中的 「MMM」。

在設定作業中,陣列必須是只有 13 個元素的一維,因為 Calendar 物件會容納具有 13 個月的行事曆。 對於具有 12 個月的行事曆,第十三個元素應該是 String.Empty 。 第一個專案 (索引為零的專案,) 代表 屬性所 Calendar 定義年份的第一個月。

如果您設定 AbbreviatedMonthGenitiveNames 屬性,您也必須設定 AbbreviatedMonthNames 屬性。

適用於

另請參閱