當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C# TimeSpan.FromMinutes()用法及代碼示例


此方法用於獲取表示指定分鍾數的TimeSpan,其中規格精確到最接近的毫秒。

用法: public static TimeSpan FromMinutes (double value);

參數:
value:此參數指定分鍾數,精確到最接近的毫秒。


返回值:它返回一個代表該值的新TimeSpan對象。

異常:

  • OverflowException:如果給定的double值小於最小可能值或大於最大可能值,或者該值是PositiveInfinity或NegativeInfinity。
  • ArgumentException:如果值為NaN。

以下示例程序旨在說明TimeSpan.FromMinutes(Double)Method的用法:

示例1:

// C# program to demonstrate the 
// TimeSpan.FromMinutes(Double) Method 
using System; 
  
class GFG { 
  
    // Main Method 
    public static void Main() 
    { 
        try { 
  
            TimeSpan interval = TimeSpan.FromMinutes(8.12345); 
            Console.WriteLine("The Timespan is : {0}", 
                                            interval); 
        } 
  
        catch (OverflowException e)  
        { 
            Console.Write("Exception Thrown: "); 
            Console.Write("{0}", e.GetType(), e.Message); 
        } 
    } 
}
輸出:
The Timespan is : 00:08:07.4070000

示例2:對於溢出異常

// C# program to demonstrate the 
// TimeSpan.FromMinutes(Double) Method 
using System; 
  
class GFG { 
  
    // Main Method 
    public static void Main() 
    { 
        try { 
  
            TimeSpan interval =  
               TimeSpan.FromMinutes(Double.PositiveInfinity); 
  
            Console.WriteLine("The Timespan is : {0}", 
                                            interval); 
        } 
  
        catch (OverflowException e)  
        { 
            Console.Write("Exception Thrown: "); 
            Console.Write("{0}", e.GetType(), e.Message); 
        } 
    } 
}
輸出:
Exception Thrown: System.OverflowException

參考:



相關用法


注:本文由純淨天空篩選整理自IshwarGupta大神的英文原創作品 TimeSpan.FromMinutes() Method in C#。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。