PSDataTable.GetColumnAsDateTime-Methode (DataRow, String)
Ruft den DateTime -Wert der angegebenen Spalte in einem DataRow -Objekt ab.
Namespace: Microsoft.Office.Project.Server.Library
Assembly: Microsoft.Office.Project.Server.Library (in Microsoft.Office.Project.Server.Library.dll)
Syntax
'Declaration
Public Shared Function GetColumnAsDateTime ( _
row As DataRow, _
colName As String _
) As DateTime
'Usage
Dim row As DataRow
Dim colName As String
Dim returnValue As DateTime
returnValue = PSDataTable.GetColumnAsDateTime(row, _
colName)
public static DateTime GetColumnAsDateTime(
DataRow row,
string colName
)
Parameter
row
Typ: System.Data.DataRowDie Zeile, die für die angegebene Spalte zu suchen.
colName
Typ: System.StringDer Name der Spalte.
Rückgabewert
Typ: System.DateTime
Gibt den DateTime Wert der angegebenen Spalte zurück. Wenn row oder colNameein Nullverweis (Nothing in Visual Basic)sind, wird new DateTime(0)zurückgegeben.
Hinweise
Intern ruft GetColumnAsDateTime(row, colName)GetColumnAsBoolean(row, colName, new DateTime(0)).