DataFramegetColumnForIndexAsInts Method |
Returns a particular column for a particular index as an int Array
Namespace:
Kratos_3.Network
Assembly:
Kratos_3 (in Kratos_3.dll) Version: 3.6.2.0 (3.6.2.0)
Syntaxpublic int[] getColumnForIndexAsInts(
string index,
int column
)
Public Function getColumnForIndexAsInts (
index As String,
column As Integer
) As Integer()
public:
array<int>^ getColumnForIndexAsInts(
String^ index,
int column
)
member getColumnForIndexAsInts :
index : string *
column : int -> int[]
Parameters
- index
- Type: SystemString
The index needed - column
- Type: SystemInt32
The column needed
Return Value
Type:
Int32All the values in the given column for the given index as an int array
ExceptionsException | Condition |
---|
KeyNotFoundException | Thrown if the requested index does not exist in this particular dataframe |
See Also