Home »
.Net »
C# Programs
C# program to demonstrate the use of FromTicks() method of TimeSpan structure
Here, we are going to demonstrate the use of FromTicks() method of TimeSpan structure in C#.Net.
Submitted by Nidhi, on April 20, 2021
Here, we will learn about the FromTicks() method of TimeSpan structure. This 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
Program:
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 »