 | DataFrameAddRow(Int32, DataRow) Method |
Adds the data from the given DataRow using the specified column in the row
as the row key.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic DataFrame AddRow(
int keyColumn,
DataRow row
)
Public Function AddRow (
keyColumn As Integer,
row As DataRow
) As DataFrame
public:
DataFrame^ AddRow(
int keyColumn,
DataRow^ row
)
member AddRow :
keyColumn : int *
row : DataRow -> DataFrame
Parameters
- keyColumn Int32
- A column containing the row key.
- row DataRow
- A DataRow.
Return Value
DataFrameThis data frame.
ExceptionsException | Condition |
---|
MismatchedSizeException | Thrown if the number of columns
in the DataRow does not match number of columns in this data frame. |
See Also