BACnet.Types.Date.Date C# (CSharp) Method

Date() public method

Constructs a new DateValue instance
public Date ( byte year, byte month, byte day, byte dayOfWeek ) : System
year byte The year of the date value
month byte The month of the date value
day byte The day of the date value
dayOfWeek byte The day of week of the date value
return System
        public Date(byte year, byte month, byte day, byte dayOfWeek)
            : this()
        {
            this.Year = year;
            this.Month = month;
            this.Day = day;
            this.DayOfWeek = dayOfWeek;
        }
Date