Azavea.Open.DAO.CSV.WriterInfo.WriterInfo C# (CSharp) Method

WriterInfo() public method

Create the info and initialize the fields.
public WriterInfo ( TextWriter writer, bool needsHeader ) : System
writer System.IO.TextWriter The writer to write CSV data to.
needsHeader bool Whether we should write a header line (I.E. false if /// there is already data there or we already wrote one).
return System
        public WriterInfo(TextWriter writer, bool needsHeader)
        {
            Writer = writer;
            NeedsHeader = needsHeader;
        }

Same methods

WriterInfo::WriterInfo ( string filePath, bool append, bool namedColumns ) : System
WriterInfo