PSDataTable.GetColumnAsDateTime 方法 (DataRow, String)
在一个DataRow对象中获取指定列的DateTime值。
命名空间: Microsoft.Office.Project.Server.Library
程序集: Microsoft.Office.Project.Server.Library(位于 Microsoft.Office.Project.Server.Library.dll 中)
语法
声明
Public Shared Function GetColumnAsDateTime ( _
row As DataRow, _
colName As String _
) As DateTime
用法
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
)
参数
row
类型:System.Data.DataRow要搜索的指定列的行。
colName
类型:System.String列的名称。
返回值
类型:System.DateTime
返回指定列的DateTime值。如果row或colName空引用(无 在 Visual Basic 中),它会返回new DateTime(0)。
备注
GetColumnAsDateTime(row, colName)在内部调用GetColumnAsBoolean(row, colName, new DateTime(0))。