ee8cce22 eba7 74fc 7e4a de3f80b5dc31 - akesseler/Plexdata.CsvParser GitHub Wiki
This method tries to write given values into given stream.
Namespace: Plexdata.CsvParser.Processors
Assembly: Plexdata.CsvParser.NET (in Plexdata.CsvParser.NET.dll) Version: 1.1.3+d5bef99aa35461ce4bafadf0bf2c2aeca18044ea
C#
public static void Write(
IEnumerable<IEnumerable<Object>> content,
Stream stream
)
- content
- Type: System.Collections.Generic.IEnumerable(IEnumerable(Object))
The content array to be written to the CSV file. - stream
- Type: System.IO.Stream
The stream to write given values into.
Exception | Condition |
---|---|
ArgumentException | This exception is thrown either in case of given values are invalid or if given stream does not allow write access. |
ArgumentNullException | This exception is thrown if given stream is . |
This method performes writing of data with default settings. Using default settings means for example that special textual treatment is not applied.
CsvWriter Class
Write Overload
Plexdata.CsvParser.Processors Namespace