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