C# - TimeSpan.FromMinutes() Method with Example

In this tutorial, we will learn about the C# TimeSpan.FromMinutes() method with its definition, usage, syntax, and example. By Nidhi Last updated : March 30, 2023

TimeSpan.FromMinutes() Method

The TimeSpan.FromMinutes() is a static method that is used to return an object of TimeSpan object which is used to represent a specified number of minutes that are accurate to the nearest millisecond.

Syntax

TimeSpan TimeSpan.FromMinutes(double mins);

Parameter(s)

  • mins: A specified number of minutes.

Return Value

This method returns the object of TimeSpan object which is used to represent a specified number of minutes that are accurate to the nearest millisecond.

Exception(s)

  • System.OverflowException
  • System.ArgumentException

C# Example of TimeSpan.FromMinutes() Method

The source code to demonstrate the use of FromMinutes() 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.FromMinutes(55.999888);
    Console.WriteLine("timespan accurate to nearest millisecond: " + timespan);
  }
}

Output

timespan accurate to nearest millisecond: 00:55:59.9930000
Press any key to continue . . .

C# TimeSpan Programs »





Comments and Discussions!

Load comments ↻





Copyright © 2024 www.includehelp.com. All rights reserved.