D
DeveloperX
Hi,
I've been looking at a csv parse I found on CodeProject, and I don't
recognise the syntax used in the constructors. Here's an example:
public CachedCsvReader(TextReader reader, bool hasHeaders)
: this(reader, hasHeaders, DefaultBufferSize)
{
}
Is this basically saying pass through to the constructor that takes
(reader, hasHeaders, DefaultBufferSize) ?
Thanks.
I've been looking at a csv parse I found on CodeProject, and I don't
recognise the syntax used in the constructors. Here's an example:
public CachedCsvReader(TextReader reader, bool hasHeaders)
: this(reader, hasHeaders, DefaultBufferSize)
{
}
Is this basically saying pass through to the constructor that takes
(reader, hasHeaders, DefaultBufferSize) ?
Thanks.