PowerTools InputMan for ASP.NET 8.0J
AddSeconds メソッド
使用例 

DateTimeExのインスタンスに加算する秒(Int32 型)
秒を加算します。
構文
Public Function AddSeconds( _
   ByVal value As Integer _
) As DateTimeEx
public DateTimeEx AddSeconds( 
   int value
)

パラメータ

value
DateTimeExのインスタンスに加算する秒(Int32 型)

戻り値の型

加算後の新しいDateTimeExインスタンス。
解説
AddSecondsメソッドは、呼び出し元のインスタンスにvalue引数で指定した秒を加算した新しいDateTimeExインスタンスを作成します。
使用例
Imports GrapeCity.Web.Input.Core
Imports System.Diagnostics

' 今から1000秒後の日付と時刻を算出します。
Dim dtEx As DateTimeEx = DateTimeEx.Now.AddSeconds(1000)
Debug.WriteLine(dtEx.ToString())
using GrapeCity.Web.Input.Core;
using System.Diagnostics;

// 今から1000秒後の日付と時刻を算出します。
DateTimeEx dtEx = DateTimeEx.Now.AddSeconds(1000);
Debug.WriteLine(dtEx.ToString());
参照

DateTimeEx クラス
DateTimeEx メンバ

 

 


© 2005-2015 GrapeCity inc. All rights reserved.