Initializes a new instance of the TimeSpan class.
Initializes a new instance of the TimeSpan class to a specified number of ticks.
[Visual Basic] Overloads Public Sub New(Long)
[C#] public TimeSpan(long);
[C++] public: TimeSpan(__int64);
[JScript] public function TimeSpan(long);
Initializes a new instance of the TimeSpan class to a specified number of hours, minutes, and seconds.
[Visual Basic] Overloads Public Sub New(Integer, Integer, Integer)
[C#] public TimeSpan(int, int, int);
[C++] public: TimeSpan(int, int, int);
[JScript] public function TimeSpan(int, int, int);
Initializes a new instance of the TimeSpan class to a specified number of days, hours, minutes, and seconds.
[Visual Basic] Overloads Public Sub New(Integer, Integer, Integer, Integer)
[C#] public TimeSpan(int, int, int, int);
[C++] public: TimeSpan(int, int, int, int);
[JScript] public function TimeSpan(int, int, int, int);
Initializes a new instance of the TimeSpan class to a specified number of days, hours, minutes, and seconds.
[Visual Basic] Overloads Public Sub New(Integer, Integer, Integer, Integer, Integer)
[C#] public TimeSpan(int, int, int, int, int);
[C++] public: TimeSpan(int, int, int, int, int);
[JScript] public function TimeSpan(int, int, int, int, int);