DataStoreDataExtensions.ExportString Method
.NET Standard 2.x
Exports all of the data rows from the primary buffer of the DataStore to a string. The column name is exported by default.
Namespace: DWNet.Data
Assembly: DWNet.Data.dll
Overloads
Method | Description |
---|---|
ExportString(this IDataStoreBase dataStore, bool colheading = true) | Exports all of the data rows from the primary buffer of the DataStore to a string. The column name is exported by default. |
ExportString(this IDataStoreBase dataStore, int startRow, int endRow, bool colheading = true) | Exports the rows (from the specified starting position to the ending position) from the primary buffer of the DataStore to a string. The column name is exported by default. |
ExportString(this IDataStoreBase dataStore, int startRow, int endRow, int startColumn, int endColumn, bool colheading = true) | Exports the rows (from the specified starting position to the ending position) and the columns (from the specified starting position to the ending position) from the primary buffer of the DataStore to a string. The column name is exported by default. |