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