Represents a typed row with 1 column.
TypedRow
01 Syntax
Microsoft.VisualBasic.DataStorage.FeatherFormat.TypedRow`1
02 Methods
| Name | Overloads | Summary |
|---|---|---|
| Equals | 1 | Object |
| GetHashCode | 1 | Object |
| ToString | 1 | Object |
| GetEnumerator | 1 | IEnumerable.GetEnumerator() |
| TryGetValue | 2 | Row.TryGetValue()) |
| TryGetValue | 2 | Row.TryGetValue()) |
| ToArray | 2 | Row.ToArray() |
| GetRange | 3 | Row.GetRange()) |
| op_Explicit | 1 | Equivalent to Row.ToArray() |
03 Properties
04 Members
Equals(
Object)Object
GetHashCode
Object
ToString
Object
GetEnumerator
IEnumerable.GetEnumerator()
TryGetValue(
Int64, Value)TryGetValue(
String, Value)TryGetValue``1(
Int64, ``0)TryGetValue``1(
String, ``0)ToArray
ToArray(Value())
GetRange(
Int64, Int32)op_Explicit(TypedRow(Of `0))
Equivalent to Row.ToArray()
Index
Returns the Index (in the appropriate basis) of this row in the original dataframe.
Length
Returns the number of entries in the this column. This will always be 1.
Item(
Int64)Return the value at the given index.
Will throw if the index is out of bounds. Use TypedRow.TryGetValue() for non-throwing gets.
Item(
String)Return the value in the column with the given name.
Will throw if no column with that name exists . Use TypedRow.TryGetValue() for non-throwing gets.
Column1
Returns the value of the 1st column in the row.