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