DataFramegetColumnForIndexT Method |
Returns a particular column for a particular index
Namespace:
Kratos_3.Network
Assembly:
Kratos_3 (in Kratos_3.dll) Version: 3.6.2.0 (3.6.2.0)
Syntaxpublic T[] getColumnForIndex<T>(
string index,
int column
)
Public Function getColumnForIndex(Of T) (
index As String,
column As Integer
) As T()
public:
generic<typename T>
array<T>^ getColumnForIndex(
String^ index,
int column
)
member getColumnForIndex :
index : string *
column : int -> 'T[]
Parameters
- index
- Type: SystemString
The index needed - column
- Type: SystemInt32
The column needed
Type Parameters
- T
- The type to cast column values to
Return Value
Type:
TAll the values in the given column for the given index
ExceptionsException | Condition |
---|
KeyNotFoundException | Thrown if the requested index does not exist in this particular dataframe |
See Also