Encog.Util.CSV.ReadCSV.ReadCSV C# (CSharp) Method

ReadCSV() public method

Construct a CSV reader from an input stream. The format parameter specifies the separator character to use, as well as the number format.
public ReadCSV ( Stream stream, bool headers, CSVFormat format ) : System
stream Stream The Stream to read from.
headers bool Are headers present?
format CSVFormat What is the CSV format.
return System
        public ReadCSV(Stream stream, bool headers,
                       CSVFormat format)
        {
            _reader = new StreamReader(stream);
            Begin(headers, format);
        }

Same methods

ReadCSV::ReadCSV ( Stream istream, bool headers, char delim ) : System
ReadCSV::ReadCSV ( String filename, bool headers, CSVFormat format ) : System
ReadCSV::ReadCSV ( String filename, bool headers, char delim ) : System