System.TimeZoneInfo.GetAdjustmentRules 方法
方法描述
检索应用至当前 TimeZoneInfo 对象的 TimeZoneInfo.AdjustmentRule 对象的数组。
语法定义(C# System.TimeZoneInfo.GetAdjustmentRules 方法 的用法)
public TimeZoneInfo..::..AdjustmentRule[] GetAdjustmentRules()
参数/返回值
参数值/返回值 | 参数类型/返回类型 | 参数描述/返回描述 |
---|---|---|
返回值 | System.TimeZoneInfo.AdjustmentRule[] | 此时区的对象的数组。 |
提示和注释
GetAdjustmentRules 方法检索 System.TimeZoneInfo.AdjustmentRule 对象的数组。 数组中的每个对象定义该时区调整的有效开始日期和结束日期以及增量(即调整用来使时间更改的确切数量)。 此外,两个属性返回 System.TimeZoneInfo.TransitionTime 对象,而这些对象定义每年与标准时间发生转换的时间。
如果时区没有调整规则,则 GetAdjustmentRules 方法返回空数组(Length 为零的数组)。
对 GetAdjustmentRules 方法返回的数组的元素进行的任何修改均不反映在属于特定时区的调整规则中。 若要修改时区的调整规则(例如,反映其与夏时制之间的历史转换),则必须使用适当的调整规则创建新时区,而不是修改现有的时区。
System.TimeZoneInfo.GetAdjustmentRules 方法例子
下面的示例检索在本地系统上定义的所有时区,并将其调整规则的完整信息显示在控制台上。
private enum WeekOfMonth { First = 1, Second = 2, Third = 3, Fourth = 4, Last = 5, } private static void ShowStartAndEndDates() { // Get all time zones from system ReadOnlyCollectiontimeZones = TimeZoneInfo.GetSystemTimeZones(); string[] monthNames = CultureInfo.CurrentCulture.DateTimeFormat.MonthNames; // Get each time zone foreach (TimeZoneInfo timeZone in timeZones) { TimeZoneInfo.AdjustmentRule[] adjustments = timeZone.GetAdjustmentRules(); // Display message for time zones with no adjustments if (adjustments.Length == 0) { Console.WriteLine("{0} has no adjustment rules", timeZone.StandardName); } else { // Handle time zones with 1 or 2+ adjustments differently bool showCount = false; int ctr = 0; string spacer = ""; Console.WriteLine("{0} Adjustment rules", timeZone.StandardName); if (adjustments.Length > 1) { showCount = true; spacer = " "; } // Iterate adjustment rules foreach (TimeZoneInfo.AdjustmentRule adjustment in adjustments) { if (showCount) { Console.WriteLine(" Adjustment rule #{0}", ctr+1); ctr++; } // Display general adjustment information Console.WriteLine("{0} Start Date: {1:D}", spacer, adjustment.DateStart); Console.WriteLine("{0} End Date: {1:D}", spacer, adjustment.DateEnd); Console.WriteLine("{0} Time Change: {1}:{2:00} hours", spacer, adjustment.DaylightDelta.Hours, adjustment.DaylightDelta.Minutes); // Get transition start information TimeZoneInfo.TransitionTime transitionStart = adjustment.DaylightTransitionStart; Console.Write("{0} Annual Start: ", spacer); if (transitionStart.IsFixedDateRule) { Console.WriteLine("On {0} {1} at {2:t}", monthNames[transitionStart.Month - 1], transitionStart.Day, transitionStart.TimeOfDay); } else { Console.WriteLine("The {0} {1} of {2} at {3:t}", ((WeekOfMonth)transitionStart.Week).ToString(), transitionStart.DayOfWeek.ToString(), monthNames[transitionStart.Month - 1], transitionStart.TimeOfDay); } // Get transition end information TimeZoneInfo.TransitionTime transitionEnd = adjustment.DaylightTransitionEnd; Console.Write("{0} Annual End: ", spacer); if (transitionEnd.IsFixedDateRule) { Console.WriteLine("On {0} {1} at {2:t}", monthNames[transitionEnd.Month - 1], transitionEnd.Day, transitionEnd.TimeOfDay); } else { Console.WriteLine("The {0} {1} of {2} at {3:t}", ((WeekOfMonth)transitionEnd.Week).ToString(), transitionEnd.DayOfWeek.ToString(), monthNames[transitionEnd.Month - 1], transitionEnd.TimeOfDay); } } } Console.WriteLine(); } }
异常
异常 | 异常描述 |
---|---|
OutOfMemoryException | 系统没有足够内存来制作调整规则在内存中的副本。 |
版本信息
.NET Framework 受以下版本支持:4、3.5 .NET Framework Client Profile 受以下版本支持:4、3.5 SP1
适用平台
Windows 7, Windows Vista SP1 或更高版本, Windows XP SP3, Windows Server 2008(不支持服务器核心), Windows Server 2008 R2(支持 SP1 或更高版本的服务器核心), Windows Server 2003 SP2 .NET Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求。