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;
		}