DataObjectConverter<TObject>.FromDataFrame<R, C> Method

Converts a data frame to a data object.

Definition

Namespace: Extreme.Data
Assembly: Extreme.Data (in Extreme.Data.dll) Version: 3.2.0
C#
public abstract TObject FromDataFrame<R, C>(
	DataFrame<R, C> dataFrame
)

Parameters

dataFrame  DataFrame<R, C>
The data frame to convert.

Type Parameters

R
The type of the row keys of the data frame.
C
The type of the column keys of the data frame.

Return Value

TObject
A data object that represents dataFrame.

See Also