Minutes property

int Minutes

Gets the number of minutes (truncated).

@return the number of minutes.

Implementation

int get Minutes {
  return (this.time % TimeSpan.HOURS) ~/
      TimeSpan.MINUTES; // (this.time/1000)/60;
}