Class StringNumberRow
A type that only contains a string Row property
and a long Number property.
This is useful when creating dataflow rows that only need a string and a number,
e.g. when reading the lines of a text file or outputting error rows as strings,
together with a line number.
Also see StringRow, as well as StringRowErrors (which captures error details).
Namespace: actionETL
Assembly: actionETL.dll
Syntax
public class StringNumberRow
Constructors
StringNumberRow(String, Int64)
Initializes a new instance of the StringNumberRow class.
Declaration
public StringNumberRow(string row, long number)
Parameters
| Type | Name | Description |
|---|---|---|
| String | row | The string. |
| Int64 | number | The number. |
Properties
Number
Gets or sets the number.
Declaration
public long Number { get; set; }
Property Value
| Type | Description |
|---|---|
| Int64 |
Row
Gets or sets the string.
Declaration
public string Row { get; set; }
Property Value
| Type | Description |
|---|---|
| String |