Seconds property

int Seconds

Gets the number of seconds (truncated).

@return the number of seconds.

Implementation

int get Seconds {
  return ((this.time % TimeSpan.HOURS) % TimeSpan.MINUTES) ~/
      TimeSpan.SECONDS;
}