System.TimeZoneInfo.HasSameRules 方法
上一篇:System.TimeZoneInfo.GetUtcOffset(DateTimeOffset) 方法
下一篇:System.TimeZoneInfo.IsAmbiguousTime(DateTime) 方法
方法描述
指示当前对象和另一个 TimeZoneInfo 对象是否具有相同的调整规则。
语法定义(C# System.TimeZoneInfo.HasSameRules 方法 的用法)
public bool HasSameRules( TimeZoneInfo other )
参数/返回值
参数值/返回值 | 参数类型/返回类型 | 参数描述/返回描述 |
---|---|---|
other | System-TimeZoneInfo | 要与当前的 TimeZoneInfo 对象进行比较的另一个对象。 |
返回值 | System.Boolean | 如果两个时区具有相同的调整规则和相同的基本偏移量,则为 true;否则为 false。 |
提示和注释
与 TimeZoneInfo.Equals(TimeZoneInfo) 方法类似的是,HasSameRules 方法指示两个时区是否具有相同的基本偏移量(由 BaseUtcOffset 属性定义)和相同的调整规则。 与 TimeZoneInfo.Equals(TimeZoneInfo) 方法不同的是,HasSameRules 不比较时区标识符(由 Id 属性定义)。
System.TimeZoneInfo.HasSameRules 方法例子
下面的示例将这些时区的列表显示在控制台中。
ReadOnlyCollectiontimeZones = TimeZoneInfo.GetSystemTimeZones(); TimeZoneInfo[] timeZoneArray = new TimeZoneInfo[timeZones.Count]; timeZones.CopyTo(timeZoneArray, 0); // Iterate array from top to bottom for (int ctr = timeZoneArray.GetUpperBound(0); ctr >= 1; ctr--) { // Get next item from top TimeZoneInfo thisTimeZone = timeZoneArray[ctr]; for (int compareCtr = 0; compareCtr <= ctr - 1; compareCtr++) { // Determine if time zones have the same rules if (thisTimeZone.HasSameRules(timeZoneArray[compareCtr])) { Console.WriteLine("{0} has the same rules as {1}", thisTimeZone.StandardName, timeZoneArray[compareCtr].StandardName); } } }
异常
异常 | 异常描述 |
---|---|
ArgumentNullException | other 参数为 null。 |
版本信息
.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 系统要求。
上一篇:System.TimeZoneInfo.GetUtcOffset(DateTimeOffset) 方法
下一篇:System.TimeZoneInfo.IsAmbiguousTime(DateTime) 方法