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 String
Namespace: actionETL
Assembly: actionETL.dll
Syntax
public class StringNumberRow
Constructors
StringNumberRow(String, Int64)
Initializes a new instance of the String
Declaration
public StringNumberRow(string row, long number)
Parameters
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 |