IDataObject<TObject>.ToDataFrame Method

Definition

Namespace: Extreme.Data
Assembly: Extreme.Data (in Extreme.Data.dll) Version: 3.2.0

Overload List

ToDataFrame() Converts the object to a data frame.
ToDataFrame<R, C>() Converts the object to a data frame.

IDataObject<TObject>.ToDataFrame

Converts the object to a data frame.
C#
DataFrame<long, string> ToDataFrame()

Return Value

DataFrame<Int64, String>
The new data frame.

IDataObject<TObject>.ToDataFrame<R, C>

Converts the object to a data frame.
C#
DataFrame<R, C> ToDataFrame<R, C>()

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

DataFrame<R, C>
The new data frame.

See Also