Home »
.Net »
C# Programs
C# - TimeSpan.FromTicks() Method with Example
In this tutorial, we will learn about the C# TimeSpan.FromTicks() method with its definition, usage, syntax, and example.
By Nidhi Last updated : March 30, 2023
TimeSpan.FromTicks() Method
The TimeSpan.FromTicks() is a static method that is used to return an object of TimeSpan object which is used to represent a specified number of ticks that are accurate to the nearest millisecond.
Syntax
TimeSpan TimeSpan.FromTicks(long ticks);
Parameter(s)
- ticks: A specified number of ticks.
Return Value
This method returns the object of TimeSpan object which is used to represent a specified number of ticks that are accurate to the nearest millisecond.
Exception(s)
- System.OverflowException
- System.ArgumentException
C# Example of TimeSpan.FromTicks() Method
The source code to demonstrate the use of FromTicks() method 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() {
TimeSpan timespan = TimeSpan.FromTicks(5532432);
Console.WriteLine("timespan accurate to nearest millisecond: " + timespan);
}
}
Output
timespan accurate to nearest millisecond: 00:00:00.5532432
Press any key to continue . . .
C# TimeSpan Programs »