此方法用於獲取新的DateTimeOffset對象,該對象將指定數量的整數分鍾和分數分鍾添加到當前實例的值。
用法: public DateTimeOffset AddMinutes (double minutes);
Here, it takes a number of whole and fractional minutes. The number can be negative or positive.
返回值:它返回一個對象,其值是當前DateTimeOffset對象表示的日期和時間與分鍾表示的分鍾數之和。
異常:如果結果DateTimeOffset的值小於MinValue或結果DateTimeOffset的值大於MaxValue,則此方法將提供ArgumentOutOfRangeException
以下示例程序旨在說明DateTimeOffset.AddMinutes(Double)方法的用法:
示例1:
// C# program to demonstrate the
// DateTimeOffset.AddMinutes(Double)
// Method
using System;
using System.Globalization;
class GFG {
// Main Method
public static void Main()
{
try {
// creating object of DateTimeOffset
DateTimeOffset offset = new DateTimeOffset(2007,
6, 1, 7, 55, 0, new TimeSpan(-5, 0, 0));
// adding a specified number of whole and
// fractional minutes to the value of this
// instance using AddMinutes() method
DateTimeOffset value = offset.AddMinutes(10);
// Display the time
Console.WriteLine("DateTimeOffset is {0}", value);
}
catch (ArgumentOutOfRangeException e) {
Console.Write("Exception Thrown: ");
Console.Write("{0}", e.GetType(), e.Message);
}
}
}
輸出:
DateTimeOffset is 06/01/2007 08:05:00 -05:00
示例2:對於ArgumentOutOfRangeException
// C# program to demonstrate the
// DateTimeOffset.AddMinutes(Double)
// Method
using System;
using System.Globalization;
class GFG {
// Main Method
public static void Main()
{
try {
// creating object of DateTimeOffset
DateTimeOffset offset = DateTimeOffset.MaxValue;
// adding a specified number of whole and
// fractional minutes to the value of this
// instance using AddMinutes() method
DateTimeOffset value = offset.AddMinutes(10);
// Display the time
Console.WriteLine("DateTimeOffset is {0}", value);
}
catch (ArgumentOutOfRangeException e) {
Console.Write("Exception Thrown: ");
Console.Write("{0}", e.GetType(), e.Message);
}
}
}
輸出:
Exception Thrown: System.ArgumentOutOfRangeException
參考:
- https://docs.microsoft.com/en-us/dotnet/api/system.datetimeoffset.addminutes?view=netframework-4.7.2
相關用法
注:本文由純淨天空篩選整理自RohitPrasad3大神的英文原創作品 DateTimeOffset.AddMinutes() Method in C#。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。