Click or drag to resize

FrameTableAddRowT Method (IReadOnlyListT)

Adds a new row of data to the frame.

Namespace:  Meta.Numerics.Data
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax
public void AddRow<T>(
	IReadOnlyList<T> values
)

Parameters

values
Type: System.Collections.GenericIReadOnlyListT
The values to add to each column.

Type Parameters

T
The type of the data collection.
Exceptions
ExceptionCondition
DimensionMismatchExceptionThe number of items in values not equal the number of columns in the table.
Remarks

Use this overload when the data types are uniform across all columns.

See Also