PSDataTable.GetColumnAsInt32 方法 (DataRow, String, Int32)
获取指定列的DataRow对象中的整数值或默认值。
命名空间: Microsoft.Office.Project.Server.Library
程序集: Microsoft.Office.Project.Server.Library(位于 Microsoft.Office.Project.Server.Library.dll 中)
语法
声明
Public Shared Function GetColumnAsInt32 ( _
row As DataRow, _
colName As String, _
defaultValue As Integer _
) As Integer
用法
Dim row As DataRow
Dim colName As String
Dim defaultValue As Integer
Dim returnValue As Integer
returnValue = PSDataTable.GetColumnAsInt32(row, _
colName, defaultValue)
public static int GetColumnAsInt32(
DataRow row,
string colName,
int defaultValue
)
参数
row
类型:System.Data.DataRow要搜索的指定列的行。
colName
类型:System.String列的名称。
defaultValue
类型:System.Int32如果row或colName空引用(无 在 Visual Basic 中)返回默认值。
返回值
类型:System.Int32
返回指定列的整数值。如果row或colName空引用(无 在 Visual Basic 中),它会返回0。