Home »
.Net »
C# Programs
C# - TimeSpan.TotalMilliseconds Property with Example
In this tutorial, we will learn about the C# TimeSpan.TotalMilliseconds property with its definition, usage, syntax, and example.
By Nidhi Last updated : March 30, 2023
TimeSpan.TotalMilliseconds Property
The TimeSpan.TotalMilliseconds property is read-only which is used to represent the total milliseconds of the current instance in the TimeSpan structure. Here we create an instance of TimeSpan and initialized with days, hours, minutes, seconds, and milliseconds.
Syntax
double TimeSpan.TotalMilliseconds;
Parameter(s)
Return Value
This property returns a double value that represents the number of milliseconds in the current instance of the TimeSpan structure.
C# Example of TimeSpan.TotalMilliseconds Property
The source code to demonstrate the use of TotalMilliseconds property of TimeSpan structure is given below. The given program is compiled and executed successfully.
using System;
class TimeSpanDemo {
// Entry point of Program
static public void Main() {
// Here we create instance timespan and
// initialized with days, hours, minutes, second,
// and milliseconds
TimeSpan timeSpan = new TimeSpan(2, 13, 35, 44, 213);
Console.WriteLine("Created TimeSpan values:" + timeSpan);
Console.WriteLine("MilliSeconds in TimeSpan: " + timeSpan.TotalMilliseconds);
}
}
Output
Created TimeSpan values:2.13:35:44.2130000
MilliSeconds in TimeSpan: 221744213
Press any key to continue . . .
C# TimeSpan Programs »