BACnet.Ashrae.DateAndTime.ToDateTime C# (CSharp) 메소드

ToDateTime() 공개 메소드

public ToDateTime ( ) : DateTime
리턴 DateTime
        public DateTime ToDateTime()
        {
            return new DateTime(
                this.Date.Year + 1900,
                this.Date.Month,
                this.Date.Day,
                this.Time.Hour,
                this.Time.Minute,
                this.Time.Second,
                this.Time.Hundredths * 10);
        }