Represents a typed row with 5 columns.
TypedRowType3
01 Syntax
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
| Name | Overloads | Summary |
|---|---|---|
| Index | 1 | Returns the Index (in the appropriate basis) of this row in the original dataframe. |
| Length | 1 | Returns the number of entries in the this column. |
| Item | 2 | Return the value at the given index. |
| Column1 | 1 | Returns the value of the 1st column in the row. |
| Column2 | 1 | Returns the value of the 2nd column in the row. |
| Column3 | 1 | Returns the value of the 3rd column in the row. |
| Column4 | 1 | Returns the value of the 4th column in the row. |
| Column5 | 1 | Returns the value of the 5th column in the row. |
04 Members
Object)Object
Object
Object
IEnumerable.GetEnumerator()
Int64, Value)String, Value)Int64, ``0)String, ``0)Int64, Int32)Equivalent to Row.ToArray()
Returns the Index (in the appropriate basis) of this row in the original dataframe.
Returns the number of entries in the this column. This will always be 5.
Int64)Return the value at the given index.
Will throw if the index is out of bounds. Use TypedRowType3.TryGetValue() for non-throwing gets.
String)Return the value in the column with the given name.
Will throw if no column with that name exists . Use TypedRowType3.TryGetValue() for non-throwing gets.
Returns the value of the 1st column in the row.
Returns the value of the 2nd column in the row.
Returns the value of the 3rd column in the row.
Returns the value of the 4th column in the row.
Returns the value of the 5th column in the row.