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

Time() public method

Constructs a new time instance
public Time ( byte hour, byte minute, byte second, byte hundredths ) : System
hour byte The hour component of the time
minute byte The minute component of the time
second byte The second component of the time
hundredths byte The hundredths component of the time
return System
        public Time(byte hour, byte minute, byte second, byte hundredths)
            : this()
        {
            this.Hour = hour;
            this.Minute = minute;
            this.Second = second;
            this.Hundredths = hundredths;
        }
Time