Milliseconds property

int Milliseconds

Gets the number of milliseconds.

@return the number of milliseconds.

Implementation

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