public void AddRow<T>(
IReadOnlyList<T> values
)
Public Sub AddRow(Of T) (
values As IReadOnlyList(Of T)
)
public:
generic<typename T>
void AddRow(
IReadOnlyList<T>^ values
)
member AddRow :
values : IReadOnlyList<'T> -> unit
Use this overload when the data types are uniform across all columns.
DimensionMismatchException | The number of items in values not equal the number of columns in the table. |