  | DataFrameAddRow(ICollection) Method | 
            Adds a row to this data frame using default row key (this.Rows + 1).
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic DataFrame AddRow(
	ICollection c
)
Public Function AddRow ( 
	c As ICollection
) As DataFrame
public:
DataFrame^ AddRow(
	ICollection^ c
)
member AddRow : 
        c : ICollection -> DataFrame Parameters
- c  ICollection
 - A collection of row data.
 
Return Value
DataFrameThis data frame.
Exceptions| Exception | Condition | 
|---|
| MismatchedSizeException | Thrown if the number of objects does
            not equal the number of columns in this data frame | 
| InvalidArgumentException | Thrown if the type of the given row key
            does not match the type of any existing row keys. | 
See Also