ExcelWorksheetDataGetNullableColumnT Method (Int32) |
Returns the content of the column cast to a nullable of the type or null if the column has no value.
Namespace: Test.FrameworkAssembly: Test.Framework (in Test.Framework.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public Nullable<T> GetNullableColumn<T>(
int ordinal
)
where T : struct, new()
Public Function GetNullableColumn(Of T As {Structure, New}) (
ordinal As Integer
) As Nullable(Of T)
public:
generic<typename T>
where T : value class, gcnew()
Nullable<T> GetNullableColumn(
int ordinal
)
member GetNullableColumn :
ordinal : int -> Nullable<'T> when 'T : struct, new()
Parameters
- ordinal
- Type: SystemInt32
Type Parameters
- T
Return Value
Type:
NullableTSee Also