System.TimeZoneInfo.CreateCustomTimeZone C# (CSharp) Метод

CreateCustomTimeZone() публичный статический Метод

public static CreateCustomTimeZone ( string id, System.TimeSpan baseUtcOffset, string displayName, string standardDisplayName ) : TimeZoneInfo
id string
baseUtcOffset System.TimeSpan
displayName string
standardDisplayName string
Результат TimeZoneInfo
		public static TimeZoneInfo CreateCustomTimeZone (string id, TimeSpan baseUtcOffset, string displayName, string standardDisplayName) 
		{
			return CreateCustomTimeZone (id, baseUtcOffset, displayName, standardDisplayName, null, null, true);
		}

Same methods

TimeZoneInfo::CreateCustomTimeZone ( string id, System.TimeSpan baseUtcOffset, string displayName, string standardDisplayName, string daylightDisplayName, TimeZoneInfo adjustmentRules ) : TimeZoneInfo
TimeZoneInfo::CreateCustomTimeZone ( string id, System.TimeSpan baseUtcOffset, string displayName, string standardDisplayName, string daylightDisplayName, TimeZoneInfo adjustmentRules, bool disableDaylightSavingTime ) : TimeZoneInfo