TimeSpan constructor

TimeSpan(
  1. int time
)

Creates a new instance of TimeSpan based on the number of milliseconds entered.

@param time the number of milliseconds for this TimeSpan.

Implementation

TimeSpan(int time) {
  this.time = time;
}