DataFramegetColumnT Method |
Returns all data points in a particular column
Namespace:
Kratos_3.Network
Assembly:
Kratos_3 (in Kratos_3.dll) Version: 3.6.2.0 (3.6.2.0)
Syntaxpublic T[] getColumn<T>(
int column
)
Public Function getColumn(Of T) (
column As Integer
) As T()
public:
generic<typename T>
array<T>^ getColumn(
int column
)
member getColumn :
column : int -> 'T[]
Parameters
- column
- Type: SystemInt32
The column neeeded
Type Parameters
- T
- What type of data to return the column as
Return Value
Type:
TArray with all the data points in that column
See Also