BACnet.Ashrae.DateAndTime.ToDateTime C# (CSharp) Method

ToDateTime() public method

public ToDateTime ( ) : DateTime
return 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);
        }