DateTimeFormatInfo.ShortestDayNames プロパティとは? わかりやすく解説

Weblio 辞書 > コンピュータ > .NET Framework クラス ライブラリ リファレンス > DateTimeFormatInfo.ShortestDayNames プロパティの意味・解説 

DateTimeFormatInfo.ShortestDayNames プロパティ

メモ : このプロパティは、.NET Framework version 2.0新しく追加されたものです。

現在の DateTimeFormatInfo オブジェクト関連付けられた曜日の最も短い一意省略名の文字列配列取得または設定します

名前空間: System.Globalization
アセンブリ: mscorlib (mscorlib.dll 内)
構文構文

<ComVisibleAttribute(False)> _
Public Property ShortestDayNames As
 String()
Dim instance As DateTimeFormatInfo
Dim value As String()

value = instance.ShortestDayNames

instance.ShortestDayNames = value
[ComVisibleAttribute(false)] 
public string[] ShortestDayNames { get;
 set; }
[ComVisibleAttribute(false)] 
public:
property array<String^>^ ShortestDayNames {
    array<String^>^ get ();
    void set (array<String^>^ value);
}
/** @property */
public String[] get_ShortestDayNames ()

/** @property */
public void set_ShortestDayNames (String[]
 value)
public function get ShortestDayNames
 () : String[]

public function set ShortestDayNames
 (value : String[])

プロパティ
曜日名文字列配列

例外例外
例外種類条件

ArgumentNullException

設定操作で、値配列または値配列要素1 つnull 参照 (Visual Basic では Nothing) です。

使用例使用例

日時形式パターンネイティブな暦名、および月と曜日の完全名省略名を指定する複数メソッドプロパティコード例次に示します

' This code example demonstrates the DateTimeFormatInfo 
' MonthGenitiveNames, AbbreviatedMonthGenitiveNames, 
' ShortestDayNames, and NativeCalendarName properties, and
' the GetShortestDayName() and SetAllDateTimePatterns() methods.

Imports System
Imports System.Globalization

Class Sample
    Public Shared Sub Main()
 
        Dim myDateTimePatterns() As String
 = {"MM/dd/yy", "MM/dd/yyyy"}
        Dim name As String
 = ""
        
        ' Get the en-US culture.
        Dim ci As New CultureInfo("en-US")
        ' Get the DateTimeFormatInfo for the en-US culture.
        Dim dtfi As DateTimeFormatInfo = ci.DateTimeFormat
        
        ' Display the effective culture.
        Console.WriteLine("This code example uses the {0} culture.",
 ci.Name)
        
        ' Display the native calendar name.    
        Console.WriteLine(vbCrLf & "NativeCalendarName...")
        Console.WriteLine("""{0}""",
 dtfi.NativeCalendarName)
        
        ' Display month genitive names.
        Console.WriteLine(vbCrLf & "MonthGenitiveNames...")
        For Each name In
 dtfi.MonthGenitiveNames
            Console.WriteLine("""{0}""",
 name)
        Next name
        
        ' Display abbreviated month genitive names.
        Console.WriteLine(vbCrLf & "AbbreviatedMonthGenitiveNames...")
        For Each name In
 dtfi.AbbreviatedMonthGenitiveNames
            Console.WriteLine("""{0}""",
 name)
        Next name
        
        ' Display shortest day names.
        Console.WriteLine(vbCrLf & "ShortestDayNames...")
        For Each name In
 dtfi.ShortestDayNames
            Console.WriteLine("""{0}""",
 name)
        Next name
        
        ' Display shortest day name for a particular day of the week.
        Console.WriteLine(vbCrLf & "GetShortestDayName(DayOfWeek.Sunday)...")
        Console.WriteLine("""{0}""",
 dtfi.GetShortestDayName(DayOfWeek.Sunday))
        
        ' Display the initial DateTime format patterns for the 'd' format
 specifier.
        Console.WriteLine(vbCrLf & "Initial DateTime format
 patterns for " & _
                          "the 'd' format specifier...")
        For Each name In
 dtfi.GetAllDateTimePatterns("d"c)
            Console.WriteLine("""{0}""",
 name)
        Next name
        
        ' Change the initial DateTime format patterns for the 'd' DateTime
 format specifier.
        Console.WriteLine(vbCrLf & "Change the initial DateTime
 format patterns for the " & _
                          vbCrLf & "'d' format specifier to
 my format patterns...")
        dtfi.SetAllDateTimePatterns(myDateTimePatterns, "d"c)
        
        ' Display the new DateTime format patterns for the 'd' format
 specifier.
        Console.WriteLine(vbCrLf & _
                          "New DateTime format patterns for
 the 'd' format specifier...")
        For Each name In
 dtfi.GetAllDateTimePatterns("d"c)
            Console.WriteLine("""{0}""",
 name)
        Next name
    
    End Sub 'Main
End Class 'Sample
'
'This code example produces the following results:
'
'This code example uses the en-US culture.
'
'NativeCalendarName...
'"Gregorian Calendar"
'
'MonthGenitiveNames...
'"January"
'"February"
'"March"
'"April"
'"May"
'"June"
'"July"
'"August"
'"September"
'"October"
'"November"
'"December"
'""
'
'AbbreviatedMonthGenitiveNames...
'"Jan"
'"Feb"
'"Mar"
'"Apr"
'"May"
'"Jun"
'"Jul"
'"Aug"
'"Sep"
'"Oct"
'"Nov"
'"Dec"
'""
'
'ShortestDayNames...
'"Su"
'"Mo"
'"Tu"
'"We"
'"Th"
'"Fr"
'"Sa"
'
'GetShortestDayName(DayOfWeek.Sunday)...
'"Su"
'
'Initial DateTime format patterns for the 'd' format specifier...
'"M/d/yyyy"
'"M/d/yy"
'"MM/dd/yy"
'"MM/dd/yyyy"
'"yy/MM/dd"
'"yyyy-MM-dd"
'"dd-MMM-yy"
'
'Change the initial DateTime format patterns for the
''d' format specifier to my format patterns...
'
'New DateTime format patterns for the 'd' format specifier...
'"MM/dd/yy"
'"MM/dd/yyyy"
'
// This code example demonstrates the DateTimeFormatInfo 
// MonthGenitiveNames, AbbreviatedMonthGenitiveNames, 
// ShortestDayNames, and NativeCalendarName properties, and
// the GetShortestDayName() and SetAllDateTimePatterns() methods.

using System;
using System.Globalization;

class Sample 
{
    public static void Main()
 
    {
    string[] myDateTimePatterns = new string[]
 {"MM/dd/yy", "MM/dd/yyyy"};

// Get the en-US culture.
    CultureInfo ci = new CultureInfo("en-US");
// Get the DateTimeFormatInfo for the en-US culture.
    DateTimeFormatInfo dtfi = ci.DateTimeFormat;

// Display the effective culture.
    Console.WriteLine("This code example uses the {0} culture.", ci.Name);

// Display the native calendar name.    
    Console.WriteLine("\nNativeCalendarName...");
    Console.WriteLine("\"{0}\"", dtfi.NativeCalendarName);

// Display month genitive names.
    Console.WriteLine("\nMonthGenitiveNames...");
    foreach (string name in
 dtfi.MonthGenitiveNames) 
    {
    Console.WriteLine("\"{0}\"", name);
    }

// Display abbreviated month genitive names.
    Console.WriteLine("\nAbbreviatedMonthGenitiveNames...");
    foreach (string name in
 dtfi.AbbreviatedMonthGenitiveNames) 
    {
    Console.WriteLine("\"{0}\"", name);
    }

// Display shortest day names.
    Console.WriteLine("\nShortestDayNames...");
    foreach (string name in
 dtfi.ShortestDayNames) 
    {
    Console.WriteLine("\"{0}\"", name);
    }

// Display shortest day name for a particular day of the week.
    Console.WriteLine("\nGetShortestDayName(DayOfWeek.Sunday)...");
    Console.WriteLine("\"{0}\"", dtfi.GetShortestDayName(DayOfWeek.Sunday));

// Display the initial DateTime format patterns for the 'd' format specifier.
    Console.WriteLine("\nInitial DateTime format patterns for
 the 'd' format specifier...");
    foreach (string name in
 dtfi.GetAllDateTimePatterns('d')) 
    {
    Console.WriteLine("\"{0}\"", name);
    }

// Change the initial DateTime format patterns for the 'd' DateTime
 format specifier.
    Console.WriteLine("\nChange the initial DateTime format patterns for
 the \n" +
                      "'d' format specifier to my format patterns...");
    dtfi.SetAllDateTimePatterns(myDateTimePatterns, 'd');

// Display the new DateTime format patterns for the 'd' format specifier.
    Console.WriteLine("\nNew DateTime format patterns for
 the 'd' format specifier...");
    foreach (string name in
 dtfi.GetAllDateTimePatterns('d')) 
    {
    Console.WriteLine("\"{0}\"", name);
    }
    }
}
/*
This code example produces the following results:

This code example uses the en-US culture.

NativeCalendarName...
"Gregorian Calendar"

MonthGenitiveNames...
"January"
"February"
"March"
"April"
"May"
"June"
"July"
"August"
"September"
"October"
"November"
"December"
""

AbbreviatedMonthGenitiveNames...
"Jan"
"Feb"
"Mar"
"Apr"
"May"
"Jun"
"Jul"
"Aug"
"Sep"
"Oct"
"Nov"
"Dec"
""

ShortestDayNames...
"Su"
"Mo"
"Tu"
"We"
"Th"
"Fr"
"Sa"

GetShortestDayName(DayOfWeek.Sunday)...
"Su"

Initial DateTime format patterns for the 'd' format specifier...
"M/d/yyyy"
"M/d/yy"
"MM/dd/yy"
"MM/dd/yyyy"
"yy/MM/dd"
"yyyy-MM-dd"
"dd-MMM-yy"

Change the initial DateTime format patterns for the
'd' format specifier to my format patterns...

New DateTime format patterns for the 'd' format specifier...
"MM/dd/yy"
"MM/dd/yyyy"

*/
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照


このページでは「.NET Framework クラス ライブラリ リファレンス」からDateTimeFormatInfo.ShortestDayNames プロパティを検索した結果を表示しています。
Weblioに収録されているすべての辞書からDateTimeFormatInfo.ShortestDayNames プロパティを検索する場合は、下記のリンクをクリックしてください。
 全ての辞書からDateTimeFormatInfo.ShortestDayNames プロパティ を検索

英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

DateTimeFormatInfo.ShortestDayNames プロパティのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



DateTimeFormatInfo.ShortestDayNames プロパティのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2025 Microsoft.All rights reserved.

©2025 GRAS Group, Inc.RSS