System.TimeType.TimeType C# (CSharp) Method

TimeType() public method

public TimeType ( int offset, bool is_dst, string abbrev ) : System
offset int
is_dst bool
abbrev string
return System
		public TimeType (int offset, bool is_dst, string abbrev)
		{
			this.Offset = offset;
			this.IsDst = is_dst;
			this.Name = abbrev;
		}