Get the milliseconds component of the time interval represented by TimeSpan in CSharp

Description

The following code shows how to get the milliseconds component of the time interval represented by TimeSpan.

Example


using System;/*w w w.  ja va2s.c om*/

class TimeSpanPropertiesDemo
{
    static void Main( )
    {
        TimeSpan ts = new TimeSpan( 98712345678 );
        Console.WriteLine(ts.Milliseconds);
    } 
}

The code above generates the following result.





















Home »
  C# Tutorial »
    Data Types »




C# Data Types
Bool
Byte
Char
Decimal
Double
Float
Integer
Long
Short
String
C# Array
Array Example
Byte Array
C# Standard Data Type Format
BigInteger
Complex
Currency
DateTime
DateTimeOffset
DateTime Format Parse Convert
TimeSpan
TimeZone
Enum
Null
tuple
var