DataExtensionsToDelimitedString Method
Converts the
DataTable to a multi-line delimited string (e.g., CSV export).
Namespace: Gemstone.Data.DataExtensionsAssembly: Gemstone.Data (in Gemstone.Data.dll) Version: 1.0.170 -- Release Build+2a9fa3c66c28e3c3cab7bdd2c7a3badf828f6ba0
Gemstone.Data.DataExtensions.DataExtensions.ToDelimitedString = function(table, delimiter, quoted, header);
- table DataTable
- The DataTable whose data is to be converted to delimited text.
- delimiter String
- The character(s) to be used for delimiting the text.
- quoted Boolean
- true, if text is to be surrounded by quotes; otherwise, false.
- header Boolean
- true, if the delimited text should have header information.
StringA string of delimited text.In Visual Basic and C#, you can call this method as an instance method on any object of type
DataTable. 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).