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

TimeType() публичный Метод

public TimeType ( int offset, bool is_dst, string abbrev ) : System
offset int
is_dst bool
abbrev string
Результат System
		public TimeType (int offset, bool is_dst, string abbrev)
		{
			this.Offset = offset;
			this.IsDst = is_dst;
			this.Name = abbrev;
		}