DataExtensions.ToDataTable(IDataFrame) Method

Constructs a data table from a data frame.

Definition

Namespace: Extreme.Data
Assembly: Extreme.Data (in Extreme.Data.dll) Version: 3.2.0
C#
public static DataTable ToDataTable(
	this IDataFrame dataFrame
)

Parameters

dataFrame  IDataFrame
The data frame to convert.

Return Value

DataTable
A new data table containing the data in dataFrame.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IDataFrame. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also