ExcelWorksheetDataGetNullableColumnT Method (String) |
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>(
string columnName
)
where T : struct, new()
Public Function GetNullableColumn(Of T As {Structure, New}) (
columnName As String
) As Nullable(Of T)
public:
generic<typename T>
where T : value class, gcnew()
Nullable<T> GetNullableColumn(
String^ columnName
)
member GetNullableColumn :
columnName : string -> Nullable<'T> when 'T : struct, new()
Parameters
- columnName
- Type: SystemString
Type Parameters
- T
Return Value
Type:
NullableTSee Also