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

変換の対象となるDateTimeExの値(GrapeCity.Web.Input.Core.DateTimeEx 型)
DateTimeEx型の値をDateTime型に変換します。
構文
Public Shared Function ToDateTime( _
   ByVal date As DateTimeEx _
) As Date
public static DateTime ToDateTime( 
   DateTimeEx date
)

パラメータ

date
変換の対象となるDateTimeExの値(GrapeCity.Web.Input.Core.DateTimeEx 型)

戻り値の型

指定したDateTimeExと等価なDateTime。
解説
ToDateTimeメソッドは、InputMan for ASP.NET独自のDateTimeEx型の値を.NET Framework標準のDateTime型に変換します。

ToDateTimeメソッドは、静的メンバ(特定のオブジェクトではなく型自体に属している)なので、インスタンスを使って参照することはできません。型の名前である「DateTimeEx」を使って参照します。
使用例
次のサンプルコードは、ToDateTimeメソッドの使用方法を示します。
Imports GrapeCity.Web.Input.Core

' DateTimeEx型のデータを設定します。
Dim dtEx As DateTimeEx = DateTimeEx.Parse("2010/01/31 10:30:45")

' 設定したDateTimeEx型の値をDateTime型に変換します。
Dim aDT As DateTime = DateTimeEx.ToDateTime(dtEx)
using GrapeCity.Web.Input.Core;

// DateTimeEx型のデータを設定します。
DateTimeEx dtEx = DateTimeEx.Parse("2010/01/31 10:30:45");

// 設定したDateTimeEx型の値をDateTime型に変換します。
DateTime aDT = DateTimeEx.ToDateTime(dtEx);
参照

DateTimeEx クラス
DateTimeEx メンバ

 

 


© 2005-2015 GrapeCity inc. All rights reserved.