本文整理匯總了C#中System.Globalization.DateTimeFormatInfo.GetShortestDayName方法的典型用法代碼示例。如果您正苦於以下問題:C# DateTimeFormatInfo.GetShortestDayName方法的具體用法?C# DateTimeFormatInfo.GetShortestDayName怎麽用?C# DateTimeFormatInfo.GetShortestDayName使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類System.Globalization.DateTimeFormatInfo
的用法示例。
在下文中一共展示了DateTimeFormatInfo.GetShortestDayName方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: Main
// 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 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"