Namespace: Extreme.Statistics.IOAssembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 6.0.16073.0 (6.0.16312.0)
public DelimitedTextDataFileReader(
Stream stream,
int startRow,
char[] columnDelimiters,
char[] rowDelimiters,
bool mergeConsecutiveDelimiters,
CultureInfo culture
)
Public Sub New (
stream As Stream,
startRow As Integer,
columnDelimiters As Char(),
rowDelimiters As Char(),
mergeConsecutiveDelimiters As Boolean,
culture As CultureInfo
)
public:
DelimitedTextDataFileReader(
Stream^ stream,
int startRow,
array<wchar_t>^ columnDelimiters,
array<wchar_t>^ rowDelimiters,
bool mergeConsecutiveDelimiters,
CultureInfo^ culture
)
new :
stream : Stream *
startRow : int *
columnDelimiters : char[] *
rowDelimiters : char[] *
mergeConsecutiveDelimiters : bool *
culture : CultureInfo -> DelimitedTextDataFileReader
Parameters
- stream
- Type: System.IOStream
The Stream the data will be read from. - startRow
- Type: SystemInt32
An integer specifying the 1-based row which contains the start of the data. - columnDelimiters
- Type: SystemChar
A Char array containing the characters that are used as column delimiters. - rowDelimiters
- Type: SystemChar
A Char array containing the characters that are used as row delimiters. - mergeConsecutiveDelimiters
- Type: SystemBoolean
A Boolean value that indicates whether consecutive column delimiters
are to be treated as a single delimiter. - culture
- Type: System.GlobalizationCultureInfo
An CultureInfo that is used to interpret the numerical data.
If columnDelimiters is , a space and tab character are used as
column delimiters.
If rowDelimiters is , a carriage return and newline character are used as
row delimiters.
Numerical Libraries
Supported in: 6.0
Reference